码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
iOS 同一UILabel改变数字的颜色
- (void)setRichNumberWithLabel:(UILabel *)label Color:(UIColor *) color FontSize:(CGFloat)size{//将Label的text转化为NSMutalbeAttributedString NSMutableA...
分类:移动开发   时间:2015-11-20 12:38:03    阅读次数:566
Layer的几个简单使用
layer.backgroundColor = [UIColor cyanColor].CGColor; // 给图层添加背景色layer.contents = (id)[UIImage imageNamed:@"view_BG.png"].CGImage; //给图层添加背景图片layer.cor...
分类:其他好文   时间:2015-11-19 22:15:48    阅读次数:188
Button
创建Button let button = UIButton(type: .Custom) button.frame = CGRectMake(100, 100, 100, 100) button.backgroundColor = UIColor.oran...
分类:其他好文   时间:2015-11-19 11:09:12    阅读次数:134
UIImageView
创建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
IOS-UI-UILable
//用于文本展示 UILabel * label = [[UILabel alloc] initWithFrame:CGRectMake(10, 30, 200, 300)]; //使用测色器自选颜色 label.backgroundColor = [UIColor colorWithRed:2.....
分类:移动开发   时间:2015-11-17 21:58:00    阅读次数:186
我的pch文件
/*** 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
UISwitch(开关控件)、UISegmentedControl(分段控件)
一、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
oc 自定义导航栏背景
[[UINavigationBar?appearance]?setBarTintColor:[UIColor?redColor]];???//@{}代表Dictionary??? ?[[UINavigationBar?appearance]?setTitleTextAttributes:@{NSForegroundColorAttributeName:[UI...
分类:其他好文   时间:2015-11-13 16:03:26    阅读次数:200
UIlabel
UILabel *mimalabel=[[UILabel alloc] initWithFrame:CGRectMake(40, 270, 90, 40)]; mimalabel.backgroundColor=[UIColor grayColor]; mimalabel.text=@"密...
分类:其他好文   时间:2015-11-12 21:29:37    阅读次数:117
#在蓝懿学习iOS的日子#day15
1动态算高度:是为了修改行高的UILabel *myLabel = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]; myLabel.backgroundColor = [UIColor yellowColor]; my.....
分类:移动开发   时间:2015-11-09 20:54:01    阅读次数:214
848条   上一页 1 ... 34 35 36 37 38 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!