1、纯色图 颜色不同 用一张图
瘦身代码
- (UIImage *)imageColorDraw:(UIColor *)color
{
CGSize size = self.size;
CGFloat scale = [OSConfigService sharedInstance].screenScale;
CGColorSpaceRef colorSpa...
分类:
移动开发 时间:
2015-02-28 10:15:31
阅读次数:
237
利用UIColor展现 #F6F6F6 这个传统的颜色
#F6F6F6 为一个 16 进制表示的RPG颜色,所以,需要先转换成 10进制,其中 F6 - 240,F6 - 240 ,F6 - 240
之后,一行代码即可 UIColor *color1= [UIColor colorWithRed:240/255.0 green:240/255.0 blue:240/255.0 alpha:...
分类:
移动开发 时间:
2015-02-27 17:13:58
阅读次数:
151
如果当前是个VC,那么就太简单了,直接就可以push到下一个vcAddShopViewController *controller = [[AddShopViewController alloc] init];controller.view.backgroundColor = [UIColor wh...
分类:
其他好文 时间:
2015-02-24 22:07:37
阅读次数:
232
直接上代码 UIView *myView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; myView.backgroundColor = [UIColor redColor]; [self.view a...
分类:
移动开发 时间:
2015-02-22 10:58:28
阅读次数:
139
-(UIColor *) radomColor{ CGFloat red = arc4random_uniform(255) / 255.0; CGFloat green = arc4random_uniform(255) / 255.0; CGFloat blue = arc4random_...
分类:
其他好文 时间:
2015-02-18 21:01:06
阅读次数:
184
一\ 写一个函数:func UIColorFromRGB(rgbValue: UInt) -> UIColor { return UIColor( red: CGFloat((rgbValue & 0xFF0000) >> 16) / 255.0, green: C...
分类:
编程语言 时间:
2015-02-16 10:13:51
阅读次数:
505
本文目录一、添加一个简单的图层二、添加一个显示图片的图层三、为什么CALayer中使用CGColorRef和CGImageRef这2种数据类型,而不用UIColor和UIImage?四、UIView和CALayer的选择五、UIView和CALayer的其他关系*上一讲已经说过,UIView内部默认...
分类:
编程语言 时间:
2015-02-13 18:03:43
阅读次数:
177
//设置返回按钮的颜色。 self.navigationBar.tintColor = [UIColor whiteColor]; //设置title属性 UINavigationBar *appearance=[UINavigationBar appearance]; ...
分类:
其他好文 时间:
2015-02-13 16:27:44
阅读次数:
166
NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:[UIFont systemFontOfSize:18],UITextAttributeFont ,[UIColor whiteColor],UITextAttributeT...
分类:
其他好文 时间:
2015-02-13 14:37:24
阅读次数:
134
#define HEXCOLOR(c) ? ? ? ? ? ? ? ? ? ? ? ? [UIColor colorWithRed:((c>>16)&0xFF)/255.0 green:((c>>8)&0xFF)/255.0 blue:(c&0xFF)/255.0 alpha:1.0]; baseView.backgroundColor = HEXCOLOR(str...
分类:
移动开发 时间:
2015-02-09 18:48:10
阅读次数:
116