Fixed item spacing being ignored on single line mode.
Add highlighted background color
Remove Autolayout inside SKTagView.
Rename insets, lineSpace and didClickTagAtIndex to interitemSpacing, lineSpacing and didTapTagAtIndex.
Added support for attributed strings
Added support for setting the font.
Fixed bug when tag's title is too long.
Added support for setting the userInteractionEnabled of tag.
Added support for setting bgImg,borderColor,borderWidth.
Use block to handle tag's click event.
//SKTagView
@property (nonatomic, copy) void (^didClickTagAtIndex)(NSUInteger index);
Add new methods:
- (void)insertTag:(SKTag *)tag atIndex:(NSUInteger)index;
- (void)removeTag:(SKTag *)tag;
- (void)removeTagAtIndex:(NSUInteger)index;
- (void)removeAllTags;