按钮在普通状态和高亮状态颜色的设置 [_button1 setTitleColor:[UIColor yellowColor] forState:UIControlStateHighlighted]; //在按钮被按下去的,按钮的整个会变成黄色 [_button1 setTitleColor:[UI ...
分类:
移动开发 时间:
2016-09-27 17:55:08
阅读次数:
125
bgView.backgroundColor = [UIColor colorWithWhite:0.f alpha:0.5]; 3 在xib或者storyBoard里面对背景进行设置 半透明背景xib设置.png 半透明背景xib设置.png 通过对背景颜色设置图中的Opacity滑块调整透明度, ...
分类:
移动开发 时间:
2016-09-27 16:25:53
阅读次数:
200
一.去重: 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.sectionIndexBackgroundColor = [UIColor clearColor]; _tableView.sectionIndexColor = kRedColor; ...
分类:
其他好文 时间:
2016-09-26 17:58:15
阅读次数:
108
UILabel* label = [[UILabel alloc] init]; label.frame = CGRectMake(0, 100, 200, 100); label.textColor = [UIColor blackColor]; NSMutableAttributedString ...
分类:
其他好文 时间:
2016-09-20 16:26:25
阅读次数:
125
UITextField *textF = [[UITextField alloc]initWithFrame:CGRectMake(0, kFitH(100), kScreenWidth, kFitH(60))]; textF.backgroundColor = [UIColor whiteColo ...
分类:
其他好文 时间:
2016-09-19 08:56:37
阅读次数:
208
新建一个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 *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