Hashtags
Hashtags is a Swift library for displaying, customizing and interacting with a list of #hashtags.
:star: Features
- Simplistic and easy to use
- Fully customizable
- Dynamic height
? Example
To run the example project, clone the repo, and run pod install
from the Example directory first.
? Requirements
Hashtags requires iOS 9 and Swift 4
? Installation
Hashtags is available through CocoaPods. To install
it, simply add the following line to your Podfile:
? Usage
Basics
1) Create a Hashtag
The boolean isRemovable
defines if the hashtag can be removed from the list, by displaying a button next to it. The boolean withHashSymbol
allows to automatically display a '#' symbol before the word.
NOTE: By default, the hashtag will display the hash symbol and won't be removable.
2) Create the view
You can use the Hashtags view either directly from the code, or through your Interface Builder.
With code:
With Interface Builder:
Simply define a UIView
and set its class to HashtagsView
. You're all set.
3) Add hashtags to the view
You can add one, or multiples hashtags at the time. Same if you want to remove them.
Dynamic height
You may want to expand the size of your HashtagView
when the hashtags exceed the actual size of the view.
To do so, implement HashtagsViewResizingDelegate
:
Example:
One good way to expand the height of your HashtagsView
when needed is to set a height constraint on it (from the code or interface builder). Then you can modify the constant
property of the constraint when the view needs to be expanded. Add an animation and you got it !
NOTE: If you are using interface builder, you might want to link your height constraint to your parent view with an @IBOutlet
. Check our example project for more details.
? Customization
Appearance
You can change style attributes of the view and the design of the hashtags themselves.
Padding inside the whole view:
-
containerPaddingLeft
-
containerPaddingRight
-
containerPaddingTop
-
containerPaddingBottom
Padding inside each hashtag:
-
tagPaddingLeft
-
tagPaddingRight
-
tagPaddingTop
-
tagPaddingBottom
Spacing between hashtags:
-
horizontalTagSpacing
-
verticalTagSpacing
Hashtags appearance:
-
tagCornerRadius
-
tagBackgroundColor
-
tagTextColor
-
removeButtonSize
-
removeButtonSpacing
If you decided to define the view from Interface Builder, you have access to those values too.