// NSFontAttributeName 设置字体属性,默认值:字体:Helvetica(Neue) 字号:12 // NSForegroundColorAttributeNam 设置字体颜色,取值为 UIColor对象,默认值为黑色 // NSBackgroundColorAttributeN ...
分类:
其他好文 时间:
2016-06-30 18:26:51
阅读次数:
122
//文字转化成图片 -(UIImage *)imageFromText:(NSArray*)arrContent withFont:(CGFloat)fontSize withTextColor:(UIColor *)textColor withBgImage:(UIImage *)bgImage ...
分类:
移动开发 时间:
2016-06-30 18:05:39
阅读次数:
158
导航栏 背景和title颜色 背景色 self.navigationController.navigationBar.barTintColor = [UIColor colorWithHex:@"#FFFEFE"];//[UIColor whiteColor]; title颜色(想显示啥样就啥样) ...
分类:
其他好文 时间:
2016-06-24 20:21:55
阅读次数:
217
扩展UIColor,将十六进制的颜色字符串转成UIColor对象。 现在就可以调用了, self.view.backgroundColor = UIColor.colorWithHexString("#ffff00") ...
分类:
其他好文 时间:
2016-06-22 23:22:39
阅读次数:
149
#pragma mark - View lifeCycle - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteColor]; [self.tableView registerCla ...
分类:
移动开发 时间:
2016-06-22 10:52:58
阅读次数:
164
如: // RGB颜色转换(16进制->10进制) #define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue ...
分类:
移动开发 时间:
2016-06-15 15:39:33
阅读次数:
301
问题1:使用UISearchDisplayController搜索时状态栏变黑 解决方案:参考参考文献1的方法将导航控制器的view的背景改为[self.navigationController.view setBackgroundColor:[UIColor whiteColor]];或者搜索条的 ...
分类:
移动开发 时间:
2016-06-15 09:19:38
阅读次数:
216
//导航条背景颜色 self.navigationController.navigationBar.barTintColor = [UIColor blueColor]; //导航条上面控件颜色 self.navigationController.navigationBar.tintColor = ...
分类:
其他好文 时间:
2016-06-14 16:09:08
阅读次数:
148
第一种 UIColor *color = [UIColor whiteColor]; _userName.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"用户名" attributes:@{NSForegrou ...
分类:
其他好文 时间:
2016-06-12 18:09:29
阅读次数:
130
一,各种名称和位置 //技巧一键换肤 [[UINavigationBar appearance]setBarTintColor:[UIColor redColor]];//给所有的NavigationBar换颜色 [[UITabBar appearance]setBarTintColor:[UICo ...
分类:
其他好文 时间:
2016-06-10 22:55:59
阅读次数:
493