最近项目有个需求,能够动态的展示一组数据标签,于是自己动手做了一个自定义的view,此自定义View暂时只是为了实现功能,其他的扩展功能以后有需要再添加。
首先是MViewTextList.h文件
//
// MViewTagList.h
// mall
//
// Created by zyz on 16/3/21.
// Copyright © 2016年 codeagod. All rights reserved.
// 文字tag展示,支持多选,支持单选
#import <UIKit/UIKit.h>
@class MViewTextList;
@protocol MViewTextListDelegate <NSObject>
/**
* 代理方法,用户选择某个tag按钮
*/
- (void)viewTextListDidSelectTagViewTextList:(MViewTextList *)viewTextList selectBtn:(UIButton *)selectBtn selectDatas:(NSArray *)selectDatas;
/**
* 代理方法,用户取消某个tag按钮
*/
- (void)viewTextListDidCancelTagViewTextList:(MViewTextList *)viewTextList cancelBtn:(UIButton *)cancelBtn selectDatas:(NSArray *)selectDatas;
@end
@interface MViewTextList : UIView
#pragma :标签的数据集合
@property (nonatomic,strong) NSArray *datas;
#pragma :选中的数据集合
@property (nonatomic,strong) NSMutableArray *datasSelect;
#pragma :是否单选
@property (nonatomic,assign) BOOL singleSelect;
#pragma :代理
@property (nonatomic,weak) id<MViewTextListDelegate> delegate;
#pragma :字体的大小,如果没有设置会有一个默认的数值
@property (nonatomic,assign) CGFloat textSize;
#pragma :内边距,如果没有设置会有一个默认的数值
@property (nonatomic,assign) CGFloat spaceIn;
#pragma :外边距,如果没有设置会有一个默认的数值
@property (nonatomic,assign) CGFloat spaceOut;
#pragma :普通的背景颜色,如果没有设置,会有一个默认的圆角背景
@property (nonatomic,strong) UIColor *colorNormalBackground;
#pragma :选中的背景颜色,如果没有设置,会有一个默认的圆角背景
@property (nonatomic,strong) UIColor *colorSelectedBackground;
#pragma :普通的字体颜色,如果没有设置,会有一个默认的字体颜色
@property (nonatomic,strong) UIColor *colorNormalText;
#pragma :选中的字体颜色,如果没有设置,会有一个默认的字体颜色
@property (nonatomic,strong) UIColor *colorSelectedText;
@end
其次,是MViewTextList.m文件内容
//
// MViewTagList.m
// mall
//
// Created by zyz on 16/3/21.
// Copyright © 2016年 codeagod. All rights reserved.
//
#import "MViewTextList.h"
#define kDefaultInSpace 10
#define kDefaultOutSpace 10
#define kDefaultTextSize 15
#define kDefaultImageNormalColor ([UIColor grayColor])
#define kDefaultImageSelectedColor ([UIColor whiteCol