码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
IOS-设置NavigationBar的背景及字体颜色
在delegate中修改 //修改整体的navigationBar的背景颜色 [[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:46/255.0 green:186/255.0 blue:157/255...
分类:移动开发   时间:2014-12-15 18:38:34    阅读次数:751
UIView UITableView 背景图片添加
这几天,经常用到为某个视图设置背景图片,而API中UIView没有设置背景图片的方法,搜集归纳如下:第一种方法:利用的UIView的设置背景颜色方法,用图片做图案颜色,然后传给背景颜色。UIColor *bgColor = [UIColor colorWithPatternImage: [UIIma...
分类:其他好文   时间:2014-12-15 11:56:46    阅读次数:221
presentation Controllers的使用(二)
- (instancetype)initContentView { self = [super init]; if (self) { [self setModalPresentationStyle:UIModalPresentationCustom]; self.view.backgroundColor = [UIColor clearColor]; self.contentContainerView = [[UIView alloc] ini...
分类:其他好文   时间:2014-12-12 10:11:51    阅读次数:231
IOS 十六进制字符串转换成UIColor
/** * 十六进制转换成UIColor * * @param stringToConvert 十六进制字符串 * * @return UIColor */+(UIColor *) hexStringToColor: (NSString *) stringToConvert{ NSStr...
分类:移动开发   时间:2014-12-09 19:15:08    阅读次数:217
UIColor转化为UIImage
+ (UIImage *)createImageWithColor:(UIColor *)color {     CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);     UIGraphicsBeginImageContext(rect.size);     CGContextRef context = UIGraphics...
分类:其他好文   时间:2014-12-08 19:40:57    阅读次数:152
颜色转换 IOS中十六进制的颜色转换为UIColor
可用类别写一个  方便使用 + (UIColor *) colorWithHexString: (NSString *)color {     NSString *cString = [[color stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] uppercaseS...
分类:移动开发   时间:2014-12-08 19:40:34    阅读次数:168
IOS学习笔记——EGOTableViewPullRefresh使用(二)
自定义样式 ????self.pullTableView.pullArrowImage?=?[UIImage?imageNamed:@"blackArrow"]; ????self.pullTableView.pullBackgroundColor?=?[UIColor?yellowColor]; ????self.pullTableView....
分类:移动开发   时间:2014-12-08 12:35:04    阅读次数:211
iOS用颜色值创建图片
- (UIImage *) createImageWithColor: (UIColor *) color{CGRect rect = CGRectMake(0.0f,0.0f,1.0f,1.0f); UIGraphicsBeginImageContext(rect.size); CGConte.....
分类:移动开发   时间:2014-12-08 12:03:50    阅读次数:145
navigationbar的一些设置记录
1.设置navigationbar背景颜色[[UINavigationBar appearance] setBarTintColor:[UIColor blackColor]];2.设置按钮颜色self.navigationController.navigationBar.tintColor = [...
分类:其他好文   时间:2014-12-06 00:03:51    阅读次数:199
自定义导航条 文字大小颜色等 按钮大小图标等 背景色
UIButton *leftBtn = [UIButton buttonWithType:UIButtonTypeCustom];     [leftBtn setTitleColor:lightBlue forState:UIControlStateNormal];     leftBtn.backgroundColor = [UIColor clearColor];     l...
分类:其他好文   时间:2014-12-05 19:26:24    阅读次数:131
848条   上一页 1 ... 69 70 71 72 73 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!