欢迎光临
我们一直在努力

最简单的聊天界面,只需要导入一个类,即可使用,实现…

建站超值云服务器,限时71元/月

最简单的聊天界面,只需要导入一个类,即可使用,实现...

项目介绍:

最简单的聊天界面,只需要导入一个类,即可使用。
主要使用方法如下:
[Objective-C] 查看源文件 复制代码

#import "UIView+CateGory.h"
#import "constant.h"

@implementation UIView (CateGory)

-(UITextField *)initWithField:(CGRect)rect color:(UIColor *)color
{
    UITextField *field=[[UITextField alloc]initWithFrame:rect];
    
    field.backgroundColor = color;
    field.layer.cornerRadius = 4.25f;
    field.layer.borderColor = [[UIColor whiteColor] CGColor];
    field.layer.borderWidth = 0.5f;
    [self addSubview:field];
    
    return field;
    
}
-(UIButton *)initWithBtn:(CGRect)rect title:(NSString *)title titleColor:(UIColor *)textColor
{
    UIButton *button=[UIButton buttonWithType:UIButtonTypeCustom];
    button.frame=rect;
    [button setTitle:title forState:UIControlStateNormal];
    [button setTitleColor:textColor forState:UIControlStateNormal];
    button.backgroundColor=[UIColor lightGrayColor];
    [self addSubview:button];
    
    return button;
}

@end



ChatView.zip
(94.22 KB, 下载次数: 136, 售价: 5 金钱)

2016-7-14 17:39 上传
点击文件名下载附件

soft chat

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 最简单的聊天界面,只需要导入一个类,即可使用,实现…
分享到: 更多 (0)