Awesome
JSLabel
<img src="https://github.com/imjog/JSLabel/blob/master/Example/JSLabel/screen.png" width="300"> <img src="https://github.com/imjog/JSLabel/blob/master/Example/JSLabel/blinkscreen.png" width="300">
Demo
pod try JSLabel
...or clone this repo and build and run/test the JSLabel
project in Xcode to see JSLabel
in action. If you don't have CocoaPods installed, grab it with [sudo] gem install cocoapods
.
$ cd Example
$ pod install
$ open JSLabel.xcworkspace
Requirements
- iOS 8.3+
- Xcode 7+
- Swift 3
Installation
JSLabel is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "JSLabel"
Manual Installation
Just drag the JSLabel.swift
files into your project.
IBDesignable
JSLabel
includes IBInspectable
annotations to enable configuring the label inside Interface Builder. However, if you see these warnings when building...
IB Designables: Failed to update auto layout status: Failed to load designables from path (null)
IB Designables: Failed to render instance of JSLabel: Failed to load designables from path (null)
...then you are likely using JSLabel
as a static library, which does not support IB annotations. Some workarounds include:
- Install
JSLabel
as a dynamic framework using CocoaPods withuse_frameworks!
in yourPodfile
, or with Carthage - Install
JSLabel
by dragging its source files to your project
Usage
Use Blinking feature
import JSLabel
let BlinkLabel = JSLabel()
BlinkLabel.startBlinking()
BlinkLabel.stopBlinking()
Creating a view from the storyboard
-
If you already have a Label where you want to use then set it's
class
toJSLabel
in identity inspector. -
Or drag a Label from object library and then change it's
class
toJSLabel
in identity inspector. -
Set the
module
property toJSLabel
.
<img src='https://github.com/imjog/JSLabel/blob/master/Example/JSLabel/setclass.png' width='260' alt='Add JsLabel to storyboard'>
- Customize the view properties in the attributes inspector.
<img src='https://github.com/imjog/JSLabel/blob/master/Example/JSLabel/inspactable.png' width='360' alt='Attributes inspector'>
Author
<table> <tr> <td> <img src="https://avatars2.githubusercontent.com/u/20956124?s=400&u=01fab3fc9bb3d2ee799e314d3fe23c54d1deeb07&v=4" width="180"/> Jogendra Singh
<p align="center">
<a href = "https://github.com/imjog"><img src = "http://www.iconninja.com/files/241/825/211/round-collaboration-social-github-code-circle-network-icon.svg" width="36" height = "36"/></a>
<a href = "https://twitter.com/imjog24"><img src = "https://www.shareicon.net/download/2016/07/06/107115_media.svg" width="36" height="36"/></a>
<a href = "https://www.linkedin.com/in/jogendrasingh24/"><img src = "http://www.iconninja.com/files/863/607/751/network-linkedin-social-connection-circular-circle-media-icon.svg" width="36" height="36"/></a>
</p>
</td>
</tr>
</table>
What's next
- Any suggestions?
Contribution
- If you found a bug, open an issue
- If you have a feature request, open an issue
- If you want to contribute, submit a pull request
- If you have any issue or want help, please drop me a mail on jogendra.singh.jog@gmail.com
License
JSLabel is available under the MIT license. See the LICENSE file for more info.