码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
字符串颜色值转换
#define ColorWithString(string) [MPUniversal colorWithString:string]/*** 转换字符串为UIColor** @param string 字符串类型:ffffff六位,ffffffff八位,#ffffff,#ffffffff; 字符...
分类:其他好文   时间:2014-07-29 17:02:32    阅读次数:241
uiTableView透明效果
//uiTableView透明效果 tableView.backgroundView=nil; tableView.backgroundColor=[UIColor clearColor]; uiTableViewCellPullDown.textLabel.backgrou...
分类:其他好文   时间:2014-07-29 12:23:16    阅读次数:136
UILable设置
//设置字体:粗体,正常的是?SystemFontOfSize?? ?? ? ? label.font?= [UIFont?boldSystemFontOfSize:20];? ? ? ? ??//设置文字颜色?? ? ? label.textColor?= [UIColor?orangeColor]; ? ? ...
分类:其他好文   时间:2014-07-27 12:15:42    阅读次数:213
编写高质量的Objective-C代码
点标记语法属性和幂等方法(多次调用和一次调用返回的结果相同)使用点标记语法访问,其他的情况使用方括号标记语法。良好的风格:view.backgroundColor = [UIColor orangeColor];[UIApplication sharedApplication].delegate;不...
分类:其他好文   时间:2014-07-26 00:47:46    阅读次数:274
UITextView详解
self.textView = [[[UITextView alloc] initWithFrame:self.view.frame] autorelease];//初始化大小并自动释放self.textView.textColor = [UIColor blackColor];//设置textvi...
分类:其他好文   时间:2014-07-25 02:30:04    阅读次数:267
iOS工具种之16进制颜色转为UIColor
#define DEFAULT_VOID_COLOR [UIColor whiteColor]+ (UIColor *)colorWithHexString:(NSString *)stringToConvert { NSString *cString = [[stringToConvert stringByTrimmingCharactersInSet:[NSCharacterSet w...
分类:移动开发   时间:2014-07-19 02:17:16    阅读次数:214
UIWebView相关设置
让UIWebView的背景透明:12self.webView.backgroundColor = [UIColor clearColor];self.webView.opaque = NO这样就可以背景透明了,如果还是无效的话,那么需要在html里面加入: 去掉uiwebview滚动到边缘时的阴影....
分类:Web程序   时间:2014-07-18 14:26:56    阅读次数:223
设置背景为白色,避免从A视图跳转到B视图的时候出现卡顿
- (void)viewDidLoad{ [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteColor];}
分类:其他好文   时间:2014-07-16 17:06:52    阅读次数:163
NSMutableAttributedString 设置不同颜色,不同字体的String
UILabel *infoLabel = [[UILabel alloc]initWithFrame:CGRectMake(95, 20, 190, 70)]; infoLabel.backgroundColor = [UIColor clearColor]; infoLabel.textAl...
分类:其他好文   时间:2014-07-16 14:10:50    阅读次数:162
textView 圆角
#import [self.content.layer setBackgroundColor:[[UIColor whiteColor] CGColor]];[self.content.layer setBorderColor:[[UIColor grayColor] CGColor]];[self...
分类:其他好文   时间:2014-07-14 21:59:15    阅读次数:201
848条   上一页 1 ... 80 81 82 83 84 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!