码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
页面常见问题
一、页面跳转时停顿问题 在跳转后的页面添加背景色:[self.view setBackgroundColor:[UIColor colorWithRed:1.0f green:1.0f blue:1.0f alpha:1]]; 二、页面布局被标题栏覆盖问题 - (id)init {     self = [super init];     if (self) {      ...
分类:其他好文   时间:2015-06-07 09:49:23    阅读次数:125
如何限制文本框输入的个数
- (void)viewDidLoad {     [super viewDidLoad];     UITextField *textF = [[UITextField alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];     textF.backgroundColor = [UIColor grayColor];     [sel...
分类:其他好文   时间:2015-06-05 10:20:28    阅读次数:122
用GCD的方式,加载网络图片(主线程加载图片+类扩展方式)
用GCD的方式,加载网络图片(主线程加载图片+类扩展方式) 用两种方法来实现网络加载图片 方法1:实现的效果:先加载背景色灰色,两秒后加载图片 - (void)viewDidLoad {     [super viewDidLoad];       self.view.backgroundColor=[UIColor grayColor];  ...
分类:编程语言   时间:2015-06-04 22:51:42    阅读次数:190
要把一个控件隐藏在navigationBar后面伺机而动怎么办
UILabel *showLabel = [[UILabel alloc]init]; showLabel.backgroundColor = [UIColor redColor]; [self.navigationController.view insertSubview:showLabel .....
分类:其他好文   时间:2015-06-04 13:35:16    阅读次数:104
iOS cell添加点击时改变字体的颜色及背景
cell.selectedBackgroundView.backgroundColor = [UIColor whiteColor];//选中后变换,色彩的变换 cell.textLabel.highlightedTextColor = [UIColor colorWi...
分类:移动开发   时间:2015-06-03 19:02:37    阅读次数:140
字符串颜色转成UIColor
+ (UIColor *)colorWithHexString:(NSString *)hexString { NSString *colorString = [[hexString stringByReplacingOccurrencesOfString: @"#" withString: @""] uppercaseString]; CGFloat alpha, red, bl...
分类:其他好文   时间:2015-06-03 15:45:37    阅读次数:100
xcode 中 UILable 使用方法简介
初始化 UILabel *lable = [[UILabel alloc] init]; // 初始化 lable.frame = CGRectMake(30, 30, 200, 50); // 设置 lable 位置和大小 lable.backgroundColor = [UIColor orangeColor]; // 设置lable背景颜色 [self.windo...
分类:其他好文   时间:2015-06-02 20:14:16    阅读次数:97
ios基础笔记(一)
1. 设置按钮文字的尺寸 为 按钮自己的尺寸 button.size = [button.currentTitle sizeWithFont:button.titleLabel.font]; button.backgroundColor=[UIColor redColor];2...
分类:移动开发   时间:2015-06-01 11:24:37    阅读次数:123
UIColor colorWithPatternImage方法
一般我们设置 一个view的背景 可以通过 在view上放一个imageView 来显示背景图片这里介绍另外一种方法可以直接通过改变view.backgroundColor的值 来达到上面的效果self.backgroundColor=[UIColorcolorWithPatternImage:[U...
分类:其他好文   时间:2015-05-31 18:20:26    阅读次数:139
ios开发 UIView(UIImageView)添加六边形的遮罩
float viewWidth = 80;                 UIBezierPath * path = [UIBezierPath bezierPath];         path.lineWidth = 2;         [[UIColor whiteColor] setStroke];         [path moveToPoint:CGPointMake((...
分类:移动开发   时间:2015-05-29 12:05:44    阅读次数:666
848条   上一页 1 ... 55 56 57 58 59 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!