- (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
//注:只能实现简单的加减乘除,不可以连续运算#define kButton_Color [UIColor cyanColor]//定义键的背景颜色宏,便于更改颜色@interface YJAppDelegate ()
{
UIView *_containter;
UIButton *_numberButton;
UILabel *_label;
CGFloat n...
分类:
其他好文 时间:
2014-08-21 11:30:14
阅读次数:
605
#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 6 默认:修改之后:代码:if (!IsIOS7) { [[ _searchBar.subviews objectAtIndex : 0 ] removeFromSuperview ]; [ _searchBar setBackgroundColor :[ UIColor...
分类:
移动开发 时间:
2014-08-16 12:27:50
阅读次数:
254
作者: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
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
转自: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
/生成采样对照颜色(黑色)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设置背景图片:即设置tableView的backgroundViewUIView *view = [[UIView alloc] init]; view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imag...
分类:
其他好文 时间:
2014-08-11 20:40:52
阅读次数:
192