码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
UIBezierPath和CABasicAnimation画一条从左至右有动画的线
- (void)drawLine{          //view是曲线的背景view     UIView *view = [[UIView alloc]initWithFrame:CGRectMake(10, 0, 300, 300)];     view.backgroundColor = [UIColor whiteColor];     [self.view addSu...
分类:其他好文   时间:2014-08-22 10:55:07    阅读次数:150
OC实现简单的计算器
//注:只能实现简单的加减乘除,不可以连续运算#define kButton_Color [UIColor cyanColor]//定义键的背景颜色宏,便于更改颜色@interface YJAppDelegate () { UIView *_containter; UIButton *_numberButton; UILabel *_label; CGFloat n...
分类:其他好文   时间:2014-08-21 11:30:14    阅读次数:605
iOS随机颜色
#import @interface UIColor (RandomColor) +(UIColor *) randomColor; @end #import "UIColor+RandomColor.h" @implementation UIColor (RandomColor) +(UIColor *) randomColor { CGFloat hue = ( arc4r...
分类:移动开发   时间:2014-08-18 18:34:33    阅读次数:230
iOS 开发之 - iOS6设置UISearchbar的背景色
效果图:ios 6 默认:修改之后:代码:if (!IsIOS7) { [[ _searchBar.subviews objectAtIndex : 0 ] removeFromSuperview ]; [ _searchBar setBackgroundColor :[ UIColor...
分类:移动开发   时间:2014-08-16 12:27:50    阅读次数:254
iOS Dev (26) 初步了解下UIColor的最常用知识
作者:CSDN 大锐哥地址:http://blog.csdn.net/prevention-内置的颜色有啥?// Some convenience methods to create colors. These colors will be as calibrated as possible.//....
分类:移动开发   时间:2014-08-14 16:21:49    阅读次数:300
IOS view的圆角和阴影并存
UIView *v=[[UIView alloc]initWithFrame:CGRectMake(10, 10, 100, 100)]; v.backgroundColor=[UIColor yellowColor];//v.layer.masksToBounds=YES;这行去掉 v.layer...
分类:移动开发   时间:2014-08-14 16:09:28    阅读次数:253
iOS 设置RGB色的宏
转自:http://lizhuang.iteye.com/blog/1931768?//RGB Color macro#define UIColorFromRGB(rgbValue) [UIColor \colorWithRed:((float)((rgbValue & 0xFF0000) >> 1...
分类:移动开发   时间:2014-08-14 10:24:48    阅读次数:249
色值转换
+(UIColor *)colorWithRGB:(int)color alpha:(float)alpha{ return [UIColor colorWithRed:((Byte)(color >> 16))/255.0 green:((Byte)(color >> 8))/255.0 blu....
分类:其他好文   时间:2014-08-13 12:42:46    阅读次数:228
IOS color 颜色值比较
/生成采样对照颜色(黑色)UIColor*sampleColor=[UIColorcolorWithRed:(0/255.0f)green:(0/255.0f) blue:(0/255.0f)alpha:(255/255.0f)];//比较 if(CGColorEqualToColor(detect...
分类:移动开发   时间:2014-08-11 23:48:12    阅读次数:269
UITableView设置背景图片
UITableView设置背景图片:即设置tableView的backgroundViewUIView *view = [[UIView alloc] init]; view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imag...
分类:其他好文   时间:2014-08-11 20:40:52    阅读次数:192
848条   上一页 1 ... 78 79 80 81 82 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!