OC常用控件封装
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface CreateUI : NSObject
#pragma mark viewRadius +(void)radiusWithView:(UIView *)radiusView withRadius:(CGFloat)radius;
+(void)radiuCornerWithColor:(UIView *)aView radius:(int)radius colorStr:(NSString *)colorStr; //添加下边框
+(void)addFrameWithBottomView:(UIView *)borderView borderHeight:(CGFloat)borderHiehgt withBorderColor:(NSString *)frameColorStr;
//添加右边框
+(void)addFrameWithRightView:(UIView *)borderView borderWidth:(CGFloat)borderWidth withBorderColor:(NSString *)frameColorStr;
//添加下划线,左右和父视图相等
+(void)addFrameWithBottomViewWithParentsWithView:(UIView *)view; #pragma mark UIView
+(UIView *)createViewWithBGColorStr:(NSString *)bgColorStr;
+(UIView *)createViewWithBGColorStr:(NSString *)bgColorStr withRadius:(CGFloat)radius;
/*
报表help的view
*/
+ (UIView *)createAlertViewWithTitle:(NSString *)title withContent:(NSString *)content; #pragma mark UILabel
+(UILabel *)createLabelWithTextColorStr:(NSString *)textColorStr withFontSize:(float )fontSize;
+(UILabel *)createLabelWithTextColorStr:(NSString *)textColorStr withFontSize:(float )fontSize withText:(NSString *)textStr; #pragma mark UIButton
+(UIButton *)createGraySearchBtn;
+(UIButton *)createBtnWithTile:(NSString *)titleStr withTitleColorStr:(NSString *)titleColorStr withFontSize:(CGFloat)fontsize ;
+(UIButton *)createBtnWithNormalimg:(NSString *)normalImg withSelectedImg:(NSString *)selectImag ;
+(UIButton *)createBtnWithTile:(NSString *)titleStr withTitleColorStr:(NSString *)titleColorStr withFontSize:(CGFloat)fontsize withNormalimg:(NSString *)normalImg withSelectedImg:(NSString *)selectImag; #pragma mark UITableView
+(UITableView *)createTableViewWithNoSep; #pragma mark UITextField
+(UITextField *)createTFWithPlaceholder:(NSString *)placeholder withFontsize:(CGFloat)fontsize withColorStr:(NSString *)textColor;
+(void)textfieldWith:(UITextField *)tf placeholder:(NSString *)placeholder withFontsize:(CGFloat)fontsize withColorStr:(NSString *)textColor; #pragma mark UISwitch
+(UISwitch *)createSwithWithOnBGColorStr:(NSString *)bgColorStr; @end
#import "CreateUI.h"
#import "Masonry.h"
#import "DefineStr.h"
@implementation CreateUI +(void)radiusWithView:(UIView *)radiusView withRadius:(CGFloat)radius{
radiusView.clipsToBounds = YES;
radiusView.layer.cornerRadius = radius;
}
+(void)radiuCornerWithColor:(UIView *)aView radius:(int)radius colorStr:(NSString *)colorStr{
aView.clipsToBounds = YES;
aView.layer.borderWidth = 1.0f;
aView.layer.borderColor = [DefineStr colorWithHexString:colorStr].CGColor;
aView.layer.cornerRadius = radius;
}
+(void)addFrameWithBottomView:(UIView *)borderView borderHeight:(CGFloat)borderHiehgt withBorderColor:(NSString *)frameColorStr{
UIView *line = [CreateUI createViewWithBGColorStr:frameColorStr];
[borderView addSubview:line];
[line mas_makeConstraints:^(MASConstraintMaker *make) {
make.bottom.offset(0);
make.left.offset(0);
make.right.offset(0);
make.height.offset(borderHiehgt);
}];
}
+(void)addFrameWithRightView:(UIView *)borderView borderWidth:(CGFloat)borderWidth withBorderColor:(NSString *)frameColorStr{
UIView *line = [CreateUI createViewWithBGColorStr:frameColorStr];
[borderView addSubview:line];
[line mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.offset(0);
make.right.offset(0);
make.width.offset(1);
make.bottom.offset(0); }]; }
+(void)addFrameWithBottomViewWithParentsWithView:(UIView *)view{
UILabel *line = [UILabel new];
line.backgroundColor =[DefineStr colorWithHexString:@"#d6d6d6"]; [[view superview] addSubview:line];
[line mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.offset(0);
make.right.offset(0);
make.height.offset(1);
make.bottom.equalTo(view.mas_bottom);
}]; }
+(UIView *)createViewWithBGColorStr:(NSString *)bgColorStr{
UIView *view = [UIView new];
view.backgroundColor = [DefineStr colorWithHexString:bgColorStr];
return view;
}
+(UIView *)createViewWithBGColorStr:(NSString *)bgColorStr withRadius:(CGFloat)radius{
UIView *view = [CreateUI createViewWithBGColorStr:bgColorStr];
[CreateUI radiusWithView:view withRadius:radius];
return view;
}
+ (UIView *)createAlertViewWithTitle:(NSString *)title withContent:(NSString *)content
{
float textWidth = 260; float textMargin = 10; UILabel *titleLabel = [[UILabel alloc]init]; titleLabel.font = [UIFont systemFontOfSize:18]; titleLabel.textColor = [UIColor blackColor]; titleLabel.backgroundColor = [UIColor clearColor]; titleLabel.lineBreakMode =NSLineBreakByWordWrapping; titleLabel.textAlignment = NSTextAlignmentCenter; titleLabel.text = title; titleLabel.frame = CGRectMake(0, textMargin, textMargin * 2 + textWidth, 40);
NSString *message = content;
UIFont *textFont = [UIFont systemFontOfSize:15]; NSMutableDictionary *attrs = [NSMutableDictionary dictionary]; attrs[NSFontAttributeName] = textFont; CGSize maxSize = CGSizeMake(textWidth-textMargin*2, MAXFLOAT); CGSize size = [message boundingRectWithSize:maxSize options:NSStringDrawingUsesLineFragmentOrigin attributes:attrs context:nil].size; UILabel *textLabel = [[UILabel alloc] initWithFrame:CGRectMake(textMargin,CGRectGetMaxY(titleLabel.frame) + textMargin,textWidth, size.height)]; textLabel.font = textFont; textLabel.textColor = [UIColor blackColor]; textLabel.backgroundColor = [UIColor clearColor]; textLabel.lineBreakMode =NSLineBreakByWordWrapping; textLabel.numberOfLines =0; textLabel.textAlignment =NSTextAlignmentLeft; textLabel.text = message; UIView *demoView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, textWidth + textMargin * 2,CGRectGetMaxY(textLabel.frame)+textMargin)];
[demoView addSubview:titleLabel];
[demoView addSubview:textLabel];
return demoView;
} +(UILabel *)createLabelWithTextColorStr:(NSString *)textColorStr withFontSize:(float )fontSize{
UILabel *label = [UILabel new];
label.textColor = [DefineStr colorWithHexString:textColorStr];
label.font = [UIFont systemFontOfSize:fontSize];
return label;
}
+(UILabel *)createLabelWithTextColorStr:(NSString *)textColorStr withFontSize:(float )fontSize withText:(NSString *)textStr{
UILabel *label = [CreateUI createLabelWithTextColorStr:textColorStr withFontSize:fontSize];
label.text = textStr;
return label;
} +(void)setLabelWithLabel:(UILabel *)label withStr:(NSString *)str withColor:(NSString *)colorStr withFontSize:(float)fontSize withImg:(NSString *)imgStr numberLines:(int)lines {
if(!str){
str = @"";
}
NSMutableAttributedString *attri = [[NSMutableAttributedString alloc] initWithString:str];
// 修改富文本中的不同文字的样式
[attri addAttribute:NSForegroundColorAttributeName value:[DefineStr colorWithHexString:colorStr ] range:NSMakeRange(0, str.length)];
[attri addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:fontSize] range:NSMakeRange(0, str.length)];
// 2.添加表情图片
NSTextAttachment *attch = [[NSTextAttachment alloc] init];
// 表情图片
attch.image = [UIImage imageNamed:imgStr];
// 设置图片大小
attch.bounds = CGRectMake(0,0, fontSize, fontSize); // 创建带有图片的富文本
NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:attch];
[attri insertAttributedString:string atIndex:0];// 插入某个位置 // 用label的attributedText属性来使用富文本
label.attributedText = attri;
label.numberOfLines = lines;
} +(UIButton *)createGraySearchBtn{
UIButton *searchBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[searchBtn setImage:[UIImage imageNamed:@"searchGray"] forState:UIControlStateNormal];
return searchBtn;
} +(UIButton *)createBtnWithTile:(NSString *)titleStr withTitleColorStr:(NSString *)titleColorStr withFontSize:(CGFloat)fontsize {
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
[btn setTitle:titleStr forState:UIControlStateNormal];
btn.titleLabel.font = [UIFont systemFontOfSize:fontsize];
[btn setTitleColor:[DefineStr colorWithHexString:titleColorStr] forState:UIControlStateNormal];
return btn; } +(UIButton *)createBtnWithTile:(NSString *)titleStr radius:(float)radius withTitleColorStr:(NSString *)titleColorStr withFontSize:(CGFloat)fontsize{
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
[btn setTitle:titleStr forState:UIControlStateNormal]; btn.clipsToBounds = YES;
btn.layer.cornerRadius = radius;
btn.titleLabel.font = [UIFont systemFontOfSize:fontsize];
[btn setTitleColor:[DefineStr colorWithHexString:titleColorStr] forState:UIControlStateNormal];
return btn; } +(UIButton *)createBtnWithTile:(NSString *)titleStr withBGColorStr:(NSString *)bgColor radius:(float)radius withTitleColorStr:(NSString *)titleColorStr withFontSize:(CGFloat)fontsize{ UIButton *btn = [CreateUI createBtnWithTile:titleStr radius:radius withTitleColorStr:titleColorStr withFontSize:fontsize];
[btn setBackgroundImage:[DefineStr createImageWithColor:[DefineStr colorWithHexString:bgColor]] forState:UIControlStateNormal];
return btn;
}
+(UIButton *)createBtnWithNormalimg:(NSString *)normalImg withSelectedImg:(NSString *)selectImag {
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
[btn setImage:[UIImage imageNamed:normalImg] forState:UIControlStateNormal];
[btn setImage:[UIImage imageNamed:selectImag] forState:UIControlStateSelected];
return btn;
}
+(UIButton *)createBtnWithTile:(NSString *)titleStr withTitleColorStr:(NSString *)titleColorStr withFontSize:(CGFloat)fontsize withNormalimg:(NSString *)normalImg withSelectedImg:(NSString *)selectImag {
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
[btn setTitle:titleStr forState:UIControlStateNormal];
btn.titleLabel.font = [UIFont systemFontOfSize:fontsize];
[btn setTitleColor:[DefineStr colorWithHexString:titleColorStr] forState:UIControlStateNormal];
[btn setImage:[UIImage imageNamed:normalImg] forState:UIControlStateNormal];
[btn setImage:[UIImage imageNamed:selectImag] forState:UIControlStateSelected];
return btn; } +(UITableView *)createTableViewWithNoSep{
UITableView *tableView = [[UITableView alloc]initWithFrame:CGRectZero style:UITableViewStylePlain];
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
tableView.tableFooterView = [UIView new];
return tableView;
}
+(UISwitch *)createSwithWithOnBGColorStr:(NSString *)bgColorStr{
UISwitch *swith = [UISwitch new];
swith.onTintColor = [DefineStr colorWithHexString:bgColorStr];
return swith;
} +(UITextField *)createTFWithPlaceholder:(NSString *)placeholder withFontsize:(CGFloat)fontsize withColorStr:(NSString *)textColor{
UITextField *field = [UITextField new];
field.placeholder = placeholder;
field.font = [UIFont systemFontOfSize:fontsize];
field.textColor = [DefineStr colorWithHexString:textColor];
return field;
}
+(void)textfieldWith:(UITextField *)field placeholder:(NSString *)placeholder withFontsize:(CGFloat)fontsize withColorStr:(NSString *)textColor{
field.placeholder = placeholder;
field.font = [UIFont systemFontOfSize:fontsize];
field.textColor = [DefineStr colorWithHexString:textColor];
} @end
OC常用控件封装的更多相关文章
- [WinForm]WinForm跨线程UI操作常用控件类大全
前言 在C#开发的WinForm窗体程序开发的时候,经常会使用多线程处理一些比较耗时之类的操作.不过会有一个问题:就是涉及到跨线程操作UI元素. 相信才开始接触的人一定会遇上这个问题. 为了解决这个问 ...
- Xamarin Studio在Mac环境下的配置和Xamarin.iOS常用控件的示例
看过好多帖子都是Win环境装XS,Mac只是个模拟器,讲解在Mac环境下如何配置Xamarin Studio很少,也是一点点找资料,东拼西凑才把Xamarin Studio装在Mac上跑起来,如下: ...
- MFC编程入门之二十二(常用控件:按钮控件Button、Radio Button和Check Box)
本节继续讲解常用控件--按钮控件的使用. 按钮控件简介 按钮控件包括命令按钮(Button).单选按钮(Radio Button)和复选框(Check Box)等.命令按钮就是我们前面多次提到的侠义的 ...
- MFC编程入门之二十(常用控件:静态文本框)
上一节讲了颜色对话框之后,关于对话框的使用和各种通用对话框的介绍就到此为止了.从本节开始将讲解各种常用控件的用法.常用控件主要包括:静态文本框.编辑框.单选按钮.复选框.分组框.列表框.组合框.图片控 ...
- MFC之常用控件(四)
常用控件主要包括:静态文本框.编辑框.单选按钮.复选框.分组框.列表框.组合框.图片控件.列表控件.树形控件和进度条控件等等.本节教程先来讲解静态文本框的使用. 控件的通知消息 在将静态文本框的使用之 ...
- Android support library支持包常用控件介绍(二)
谷歌官方推出Material Design 设计理念已经有段时间了,为支持更方便的实现 Material Design设计效果,官方给出了Android support design library ...
- VS2010/MFC编程入门之二十二(常用控件:按钮控件Button、Radio Button和Check Box)
言归正传,鸡啄米上一节中讲了编辑框的用法,本节继续讲解常用控件--按钮控件的使用. 按钮控件简介 按钮控件包括命令按钮(Button).单选按钮(Radio Button)和复选框(Check Box ...
- VS2010/MFC编程入门之二十(常用控件:静态文本框)
上一节鸡啄米讲了颜色对话框之后,关于对话框的使用和各种通用对话框的介绍就到此为止了.从本节开始鸡啄米将讲解各种常用控件的用法.常用控件主要包括:静态文本框.编辑框.单选按钮.复选框.分组框.列表框.组 ...
- QT_7_资源文件_对话框_QMessageBox_界面布局_常用控件
资源文件 1.1. 将资源导入到项目下 1.2. 添加文件—>Qt -->Qt Resource File 1.3. 起名称 res ,生成res.qrc文件 1.4. 右键 open i ...
随机推荐
- websphere 删除文件
META-INF 文件夹下加入ibm-partialapp-delete.props即可 里面添加路径 如WEB-INF/xxx/xxx.xxx
- 【转帖】解决远程连接MariaDB(mysql)很慢的方法
在CentOS7上安装完成MariaDB之后,发现无论命令行还是程序中连接MariaDB的时候都很慢,大约要一二十秒,于是网上搜索了一番,发现下面的文章内容: 在进行 ping和route后发现网络通 ...
- 一个Login页面全面了解session与cookie
背景 做了四年的前端开发,对外一直说自己是web开发,那么身为一个web开发怎能不知道session与cookie以及其管理方式呢~ Login涉及技术栈:Nodejs,MongoDB,Express ...
- SSM框架搭建教程(从零开始,图文结合)
1.准备 IntelliJ IDEA Tomcat JDK Maven mysql spring.springmvc.mybatis 了解 现在假设如上条件你都具备,那么通过我这篇博客 你一定可以整合 ...
- [TensorBoard] *Cookbook - Tensorboard
Ref: https://www.tensorflow.org/get_started/summaries_and_tensorboard 可视化对于Training的重要性,不言而喻. 代码示范 # ...
- c __cplusplus详解
Code:#ifdef __cplusplusextern "C" { #endif ... #ifdef __cplusplus} #endif 解释:1.c++中定义了__cp ...
- UILabel(富文本)
本文转载至 http://www.jianshu.com/p/5d24d22f99c3 富文本 NSString *str = @"人生若只如初见,何事秋风悲画扇.\n等闲变却故人心,却道故 ...
- Qt编写的开源帖子集合(懒人专用)
回顾自己学习Qt以来九年了,在这九年多时间里面,从本论坛学习不到不少的东西,今天特意整了一下自己开源过的资源的帖子,整理一起方便大家直接跳转下载,不统计不知道,一统计吓一跳,不知不觉开源了这么多代码, ...
- 使用 JdbcTemplate 查询数据时报错:列名无效(已解决)
又犯了一个错误. 争取没有下次了. 就算再犯,也要知道去哪找答案. 所以,记录一下,以示警戒. 报错 使用 JdbcTemplate 查询数据时,出现异常: PreparedStatementCall ...
- 也谈.Net中间语言——破解Delphi2CS行数和时间限制
其实我一直在研究将Delphi版的传奇2源代码使用C#实现,不过由于我并没有学习过Delphi.就只能说先试着用一些工具转换代码. 后来我在网上找到了一款软件:Delphi2CS.这款软件比较强大,虽 ...