FMTagsView 0.1.7

FMTagsView 0.1.7

测试已测试
语言语言 Obj-CObjective C
许可协议 MIT
发布最新发布2023年6月

Subo维护。



FMTagsView

LICENSE Version CocoaPods

一个基于UICollectionView的标签展示控件

屏幕截图

  1. 示例一,模拟天猫热门搜索标签的效果: Hot Search.gif

  2. 示例二,动态添加和删除标签

动态添加和删除.gif

特性

  • 支持AutoLayout
  • 支持自定义标签外观,如圆角、背景颜色、标签文字颜色等
  • 支持动态添加和删除标签
  • 支持单选和多选模式

如何使用

首先,将 FMTagsView.h 和 FMTagsView.m 这两个文件添加到你的项目中,或者使用 pod 命令来安装。

pod 'FMTagsView'

控件初始化示例:

  FMTagsView *tagsView = [[FMTagsView alloc] initWithFrame:CGRectMake(10, 120, 300, 150)];
    tagsView.contentInsets = UIEdgeInsetsZero;
    tagsView.tagInsets = UIEdgeInsetsMake(5, 15, 5, 15);
    tagsView.tagBorderWidth = 1;
    tagsView.tagcornerRadius = 2;
    tagsView.tagBorderColor = [UIColor lightGrayColor];
    tagsView.tagSelectedBorderColor = [UIColor lightGrayColor];
    tagsView.tagBackgroundColor = [UIColor whiteColor];
    tagsView.lineSpacing = 10;
    tagsView.interitemSpacing = 10;
    tagsView.tagFont = [UIFont systemFontOfSize:14];
    tagsView.tagTextColor = [UIColor grayColor];
    tagsView.delegate = self;
    [self.view addSubview:tagsView];
    
    NSArray *dataArray = @[@"麻棉连衣裙", @"面条", @"亲子装",
                       @"卫生巾", @"米", @"眉笔", @"蛋糕",
                       @"面包", @"洗洁精", @"咖啡速溶",
                       @"云南白药牙膏", @"方便面", @"空调"];
    //设置数据源
    tagsView.tagsArray = dataArray;

实现代理方法:

//点击标签处理逻辑
- (void)tagsView:(FMTagsView *)tagsView didSelectTagAtIndex:(NSUInteger)index {
    NSString *selectedKey = self.dataArray[index];
    UIViewController *controller = [[UIViewController alloc] init];
    controller.view.backgroundColor = [UIColor whiteColor];
    controller.title = selectedKey;
    [self.navigationController pushViewController:controller animated:YES];
}