码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
IOS开发UIButton详解
按钮在普通状态和高亮状态颜色的设置 [_button1 setTitleColor:[UIColor yellowColor] forState:UIControlStateHighlighted]; //在按钮被按下去的,按钮的整个会变成黄色 [_button1 setTitleColor:[UI ...
分类:移动开发   时间:2016-09-27 17:55:08    阅读次数:125
iOS 设置视图半透明而子控件不透明
bgView.backgroundColor = [UIColor colorWithWhite:0.f alpha:0.5]; 3 在xib或者storyBoard里面对背景进行设置 半透明背景xib设置.png 半透明背景xib设置.png 通过对背景颜色设置图中的Opacity滑块调整透明度, ...
分类:移动开发   时间:2016-09-27 16:25:53    阅读次数:200
记录一下Swift3.0的一些代码格式的变化
一.去重: 1>颜色: UIColor.whiteColor() 被改为 UIColor.white() 2>数组取值: list.objectAtIndex(i) 被改为 list.object(at: i) 3>present: presentViewController(controller, ...
分类:编程语言   时间:2016-09-27 11:46:33    阅读次数:249
改变tableView索引颜色
_tableView.sectionIndexBackgroundColor = [UIColor clearColor]; _tableView.sectionIndexColor = kRedColor; ...
分类:其他好文   时间:2016-09-26 17:58:15    阅读次数:108
设置一个label显示多种颜色,多种字体大小
UILabel* label = [[UILabel alloc] init]; label.frame = CGRectMake(0, 100, 200, 100); label.textColor = [UIColor blackColor]; NSMutableAttributedString ...
分类:其他好文   时间:2016-09-20 16:26:25    阅读次数:125
textField常用的属性
UITextField *textF = [[UITextField alloc]initWithFrame:CGRectMake(0, kFitH(100), kScreenWidth, kFitH(60))]; textF.backgroundColor = [UIColor whiteColo ...
分类:其他好文   时间:2016-09-19 08:56:37    阅读次数:208
iOS开发技巧(系列十八:扩展UIColor,支持十六进制颜色设置)
新建一个Category,命名为UIColor+Hex,表示UIColor支持十六进制Hex颜色设置。 UIColor+Hex.h文件, #import <UIKit/UIKit.h> #define RGBA_COLOR(R, G, B, A) [UIColor colorWithRed:((R) ...
分类:移动开发   时间:2016-09-13 16:32:12    阅读次数:210
UITextView的使用详解
//初始化并定义大小 UITextView *textview = [[UITextView alloc] initWithFrame:CGRectMake(20, 10, 280, 30)]; textview.backgroundColor=[UIColor whiteColor]; //背景色 ...
分类:其他好文   时间:2016-09-12 20:28:42    阅读次数:172
同一段文字设置不同的颜色和字号字体
直接看代码吧: -(void)fuwenbenLabel:(UILabel *)labell FontNumber:(id)font AndRange:(NSRange)range AndColor:(UIColor *)vaColor { NSMutableAttributedString *st ...
分类:其他好文   时间:2016-09-10 13:07:42    阅读次数:155
聊天小三角
绘制聊天小三角 1.先创建一个UIView, 并添加在父视图上 let blankView = UIView(frame: CGRectMake(100, 100, 100, 100)) blankView.backgroundColor = UIColor.greenColor() blankVi ...
分类:其他好文   时间:2016-09-07 10:31:40    阅读次数:168
848条   上一页 1 ... 15 16 17 18 19 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!