CocoaTag 0.1.1

CocoaTag 0.1.1

测试测试过
Lang语言 Obj-CObjective C
许可证 MIT
发布最新发布2015年9月

Cocoa Lee 维护。



CocoaTag 0.1.1

  • 作者:
  • Cocoa Lee

CocoaTags

CocoaTags -- 标签展示

效果展示

image

使用方法

==============:

平台文件

platform :ios, '7.0'

pod 'CocoaTag', '~> 0.1.0'

==============:

1、根据数组初始化

  NSArray *array = @[@"123",@"德玛西亚",@"扭曲丛林",@"百度",@"阿里巴巴",@"Cocoa",@"洁白月光",@"秦时明月",@"花草",@"大圣归来",@"你在干嘛呢",@"碉堡了",@"然并卵",@"纯则脆,阳则钢"];
 CocoaTagView *tagsView = [[CocoaTagView alloc] initWithFrame:CGRectMake(0, 20,CGRectGetWidth(self.view.bounds), 200)];
    [self.view addSubview:tagsView];
    [tagsView setTagsWithTagsArray:array];

2、增加 tags

  [_tagsView updateTags:array];