- (void)setRichNumberWithLabel:(UILabel *)label Color:(UIColor *) color FontSize:(CGFloat)size{//将Label的text转化为NSMutalbeAttributedString NSMutableA...
分类:
移动开发 时间:
2015-11-20 12:38:03
阅读次数:
566
layer.backgroundColor = [UIColor cyanColor].CGColor; // 给图层添加背景色layer.contents = (id)[UIImage imageNamed:@"view_BG.png"].CGImage; //给图层添加背景图片layer.cor...
分类:
其他好文 时间:
2015-11-19 22:15:48
阅读次数:
188
创建Button let button = UIButton(type: .Custom) button.frame = CGRectMake(100, 100, 100, 100) button.backgroundColor = UIColor.oran...
分类:
其他好文 时间:
2015-11-19 11:09:12
阅读次数:
134
创建ImageViewlet imageView = UIImageView(frame: CGRectMake(10, 100, self.view.frame.size.width-20, 400))imageView.backgroundColor = UIColor.orangeColor(...
分类:
其他好文 时间:
2015-11-19 11:06:14
阅读次数:
103
//用于文本展示 UILabel * label = [[UILabel alloc] initWithFrame:CGRectMake(10, 30, 200, 300)]; //使用测色器自选颜色 label.backgroundColor = [UIColor colorWithRed:2.....
分类:
移动开发 时间:
2015-11-17 21:58:00
阅读次数:
186
/*** 1. RGB背景色*/#define PPCOLOR_RGB(r,g,b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1]#define PPCOLOR_BG [UIColor colorWit...
分类:
其他好文 时间:
2015-11-17 12:25:25
阅读次数:
163
一、UISwitch1、初始化UISwitch *s1 = [[UISwitch alloc]initWithFrame:CGRectMake(50, 170, 100, 200)];2、设置相关属性s1.onTintColor = [UIColor blueColor];s1.tintColor ...
分类:
其他好文 时间:
2015-11-14 20:42:18
阅读次数:
342
[[UINavigationBar?appearance]?setBarTintColor:[UIColor?redColor]];???//@{}代表Dictionary???
?[[UINavigationBar?appearance]?setTitleTextAttributes:@{NSForegroundColorAttributeName:[UI...
分类:
其他好文 时间:
2015-11-13 16:03:26
阅读次数:
200
UILabel *mimalabel=[[UILabel alloc] initWithFrame:CGRectMake(40, 270, 90, 40)]; mimalabel.backgroundColor=[UIColor grayColor]; mimalabel.text=@"密...
分类:
其他好文 时间:
2015-11-12 21:29:37
阅读次数:
117
1动态算高度:是为了修改行高的UILabel *myLabel = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]; myLabel.backgroundColor = [UIColor yellowColor]; my.....
分类:
移动开发 时间:
2015-11-09 20:54:01
阅读次数:
214