地址:https://github.com/lovisty/AgileTag
iOS8+
通过CocoaPods安装
AgileTag 支持通过CocoaPods进行安装。在Podfile文件中加上
pod"AgileTag"
直接加项目中使用
git clonehttps://github.com/lovisty/AgileTag
找到包含的文件Classes和Assets的AgileTag文件,直接把AgileTag拖到项目中。
导入头文件:
#import "YFAgileTagView.h"
初始化以及赋值
YFAgileTagView*tagView=[[YFAgileTagViewalloc]initWithFrame:YOUR_FRAME];[tagViewsetIntervalVertical:10];//Tag之间的水平间距[tagViewsetIntervalHorizontal:15];//Tag之间的竖直间距[selfaddSubview:self.tagView];//赋值[self.tagViewsetSelectedDataArray:DATA_ARRAY];
提供的重要接口
//返回总高度self.tagView.finalHeightBlock=^(CGFloatheight){ };//添加tag[self.tagViewaddTagWithTitle:tagItem.currentTitleWithAnimation:YEScompleted:^{ }];//删除tag[firstCell.tagViewremoveTagWithTitle:tagItem.currentTitleWithAnimation:YEScompleted:^{}];注:每次调用添加或者删除tag后,会自动回调finalHeightBlock返回添加或者删除后的高度,然后回调用completed。
网友评论