码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
富文本NSMutableAttributedString用法大全
// NSFontAttributeName 设置字体属性,默认值:字体:Helvetica(Neue) 字号:12 // NSForegroundColorAttributeNam 设置字体颜色,取值为 UIColor对象,默认值为黑色 // NSBackgroundColorAttributeN ...
分类:其他好文   时间:2016-06-30 18:26:51    阅读次数:122
iOS 文字转化成图片
//文字转化成图片 -(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,将十六进制的颜色字符串转成UIColor对象。 现在就可以调用了, self.view.backgroundColor = UIColor.colorWithHexString("#ffff00") ...
分类:其他好文   时间:2016-06-22 23:22:39    阅读次数:149
iOS8之后,UITableViewRowAction实现滑动多个按钮
#pragma mark - View lifeCycle - (void)viewDidLoad { [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteColor]; [self.tableView registerCla ...
分类:移动开发   时间:2016-06-22 10:52:58    阅读次数:164
iOS中RGB常用的色值,同时可将对颜色的设置定义成宏,方便开发应用
如: // RGB颜色转换(16进制->10进制) #define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue ...
分类:移动开发   时间:2016-06-15 15:39:33    阅读次数:301
iOS搜索时状态栏文字颜色修改
问题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
修改placeholder的字体颜色
第一种 UIColor *color = [UIColor whiteColor]; _userName.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"用户名" attributes:@{NSForegrou ...
分类:其他好文   时间:2016-06-12 18:09:29    阅读次数:130
UITabBarController+UINavigationController+UIToolBar
一,各种名称和位置 //技巧一键换肤 [[UINavigationBar appearance]setBarTintColor:[UIColor redColor]];//给所有的NavigationBar换颜色 [[UITabBar appearance]setBarTintColor:[UICo ...
分类:其他好文   时间:2016-06-10 22:55:59    阅读次数:493
848条   上一页 1 ... 19 20 21 22 23 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!