#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. Keras查看model weights .h5 文件的内容

    Keras的模型是用hdf5存储的,如果想要查看模型,keras提供了get_weights的函数可以查看: for layer in model.layers: weights = layer.ge ...

  2. [Bayes] KL Divergence & Evidence Lower Bound

    L lower是什么? L lower, 既然大于,那么多出来的这部分是什么?如下推导: 得出了KL的概念,同时也自然地引出了latent variable q.

  3. [AWS] SSO: Single sign-on

    由单点登录到aws的http服务. From: https://www.jianshu.com/p/613e44d4a464 单点登录SSO(Single Sign On)说得简单点就是在一个多系统共 ...

  4. Android 信号处理面面观 之 信号定义、行为和来源

    总结: Android中: Sending signal. PID: XXX SIG: 3   ====>打印trace 原文:http://blog.csdn.net/rambo2188/ar ...

  5. sencha touch 百度地图扩展(2014-12-17)

    上个版本http://www.cnblogs.com/mlzs/p/3666466.html,新增了一些功能,修复了一些bug 扩展代码如下: Ext.define('ux.BMap', { alte ...

  6. Maven传递依赖的坑:父pom中dependencyManagement版本优先级高于传递依赖版本

    一.由来 之前同事问了个问题,就是当前工程为spring boot项目,假设版本号为2.0.3 这个项目中依赖了一个spring boot项目依赖(先别管为啥有这么奇葩的依赖,这个版本是1.5.9). ...

  7. C#模拟登录后请求查询

    需求是这样子的,想开发一个外挂程序,能够抓取别的系统的数据,从而实现数据验证. 比如这样一个界面: 使用Chrome浏览器分析http请求和响应过程以及页面的html代码,发现这是一个ajax请求,于 ...

  8. 7.17python

    1.事件: # !/usr/bin/env python # !--*--coding:utf-8 --*-- # !@Time :2018/7/17 10:38 # !@Author TrueNew ...

  9. easyui combobox setValue方法不能触发onSelect事件

    //setValue方法不能触发onSelect事件 //$("#FundingSource").combobox("setValue", data.Fundi ...

  10. VS没办法调试,直接退出,报错:1. 使用调试生成配置或禁用调试选项“启用‘仅我的代码’”。。。

    打开一个Demo,结果没办法调试,运行出错,直接退出了, 明明加了断点的. 输出→调试→提示信息如下 . 使用调试生成配置或禁用调试选项“启用‘仅我的代码’”. . 检查调试选项下的“符号”设置.线程 ...