iOS自定义控件-动态标签展示

本文介绍如何在iOS开发中创建一个自定义View,用于动态展示一组数据标签,实现了文字tag的自动排列功能。通过NSString的扩展类来辅助实现这一特性。
摘要由CSDN通过智能技术生成

最近项目有个需求,能够动态的展示一组数据标签,于是自己动手做了一个自定义的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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值