#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常用控件封装的更多相关文章

  1. [WinForm]WinForm跨线程UI操作常用控件类大全

    前言 在C#开发的WinForm窗体程序开发的时候,经常会使用多线程处理一些比较耗时之类的操作.不过会有一个问题:就是涉及到跨线程操作UI元素. 相信才开始接触的人一定会遇上这个问题. 为了解决这个问 ...

  2. Xamarin Studio在Mac环境下的配置和Xamarin.iOS常用控件的示例

    看过好多帖子都是Win环境装XS,Mac只是个模拟器,讲解在Mac环境下如何配置Xamarin Studio很少,也是一点点找资料,东拼西凑才把Xamarin Studio装在Mac上跑起来,如下: ...

  3. MFC编程入门之二十二(常用控件:按钮控件Button、Radio Button和Check Box)

    本节继续讲解常用控件--按钮控件的使用. 按钮控件简介 按钮控件包括命令按钮(Button).单选按钮(Radio Button)和复选框(Check Box)等.命令按钮就是我们前面多次提到的侠义的 ...

  4. MFC编程入门之二十(常用控件:静态文本框)

    上一节讲了颜色对话框之后,关于对话框的使用和各种通用对话框的介绍就到此为止了.从本节开始将讲解各种常用控件的用法.常用控件主要包括:静态文本框.编辑框.单选按钮.复选框.分组框.列表框.组合框.图片控 ...

  5. MFC之常用控件(四)

    常用控件主要包括:静态文本框.编辑框.单选按钮.复选框.分组框.列表框.组合框.图片控件.列表控件.树形控件和进度条控件等等.本节教程先来讲解静态文本框的使用. 控件的通知消息 在将静态文本框的使用之 ...

  6. Android support library支持包常用控件介绍(二)

    谷歌官方推出Material Design 设计理念已经有段时间了,为支持更方便的实现 Material Design设计效果,官方给出了Android support design library ...

  7. VS2010/MFC编程入门之二十二(常用控件:按钮控件Button、Radio Button和Check Box)

    言归正传,鸡啄米上一节中讲了编辑框的用法,本节继续讲解常用控件--按钮控件的使用. 按钮控件简介 按钮控件包括命令按钮(Button).单选按钮(Radio Button)和复选框(Check Box ...

  8. VS2010/MFC编程入门之二十(常用控件:静态文本框)

    上一节鸡啄米讲了颜色对话框之后,关于对话框的使用和各种通用对话框的介绍就到此为止了.从本节开始鸡啄米将讲解各种常用控件的用法.常用控件主要包括:静态文本框.编辑框.单选按钮.复选框.分组框.列表框.组 ...

  9. QT_7_资源文件_对话框_QMessageBox_界面布局_常用控件

    资源文件 1.1. 将资源导入到项目下 1.2. 添加文件—>Qt -->Qt Resource File 1.3. 起名称 res ,生成res.qrc文件 1.4. 右键 open i ...

随机推荐

  1. 16解释器模式Interpreter

    一.什么是解释器模式 Interpreter模式也叫解释器模式,是行为模式之一,它 是一种特殊的设计模式,它建立一个解释器,对于特定 的计算机程序设计语言,用来解释预先定义的文法.简 单地说,Inte ...

  2. SpringBoot Docker入门,SpringBoot Docker安装

    SpringBoot Docker入门,SpringBoot Docker安装 ================================ ©Copyright 蕃薯耀 2018年4月8日 ht ...

  3. Linux设备驱动剖析之IIC(三)

    下面以eeprom用户程序调用ioctl函数的写操作为例追踪IIC子系统的调用过程.eeprom的用户测试是大部分开发板都自带的.看写一个字节数据的eeprom_write_byte函数的定义: in ...

  4. Atom与markdown

    简述 Atom是github开发的开源跨平台的编辑器,Atom的强大可以与大名鼎鼎的Sublime Text相媲美.因为使用过Sublime Text,所以用Atom上手很快.这篇文章主要介绍使用At ...

  5. Django框架详解

    一.WSGI接口 WSGI服务网关接口:Web Server Gateway Interface缩写. WSGI是python定义的Web服务器和Web应用程序之间或框架之间的通用接口标准. WSGI ...

  6. python3之文件操作

    一   打开文件   根目录在d盘的文件名为‘学习资料.txt’的文件 a)绝对路径(最开始的,根目录文件)例:    e:\学习资料.txt 相对路径   直接用文件名字 b)操作方式  只读  只 ...

  7. 6.24 html书城Demo

    <!DOCTYPE html> <!-- 睡觉,2018-6-24 22:04:36 还有foot没弄好明天弄--> <html> <head> < ...

  8. HTTP 响应状态码

    MDN https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Status section 10 of RFC 2616 https://tools.ie ...

  9. db2pd工具

    内容 概览 简介 使用 db2pd 工具 监控的例子 db2pd 工具 用于监控 DB2 实例和数据库的新的 DB2 UDB 工具 简介 DB2 UDB V8.2 带来了一种新工具称为 db2pd,用 ...

  10. 使用ASP.NET Core的User Secrets特性

    昨天在一个集成测试项目中实际使用 ASP.NET Core 的 user secrets 保存敏感配置信息,避免了直接保存在 appsettings.json 中,在这篇随笔中记录一下. 使用 use ...