-(UIImage*)createImageWithColor: (UIColor*) color{ CGRect rect=CGRectMake(0,0, 1, 1); UIGraphicsBeginImageContext(rect.size); CGContextRef co...
分类:
其他好文 时间:
2016-01-21 18:39:57
阅读次数:
115
//// UIColor+Radom.h// 七彩方块//// Created by 大欢 on 16/1/18.// Copyright © 2016年 bjsxt. All rights reserved.//#import @interface UIColor (Radom)+ (UIColo...
分类:
移动开发 时间:
2016-01-20 22:14:59
阅读次数:
171
#pragma mark 去除多余的线-(void) clearExtrLine{ UIView *view = [[UIView alloc] init]; view.backgroundColor = [UIColor clearColor]; [tableView setTa...
分类:
其他好文 时间:
2016-01-19 15:44:25
阅读次数:
118
UILabel * label = [[UILabel alloc]initWithFrame:CGRectMake(10, 100, 300, 100)];1.设置文字颜色 label.textColor = [UIColor orangeColor]; label2...
分类:
其他好文 时间:
2016-01-18 20:44:29
阅读次数:
171
UILabel * label = [[UILabel alloc]initWithFrame:CGRectMake(10, 100, 300, 100)];1.设置文字颜色 label.textColor = [UIColor orangeColor]; label2...
分类:
其他好文 时间:
2016-01-18 11:55:33
阅读次数:
123
1 -(void)drawRect:(CGRect)rect 2 { 3 [[UIColor clearColor]setFill]; 4 UIRectFill(rect); 5 NSInteger pulsingCount = 3; 6 double animat...
分类:
移动开发 时间:
2016-01-16 11:57:58
阅读次数:
220
#pragma mark - 16位转换10进制 颜色- (UIColor *)getColor:(NSString *)hexColor{ unsigned int red,green,blue; NSRange range; range.length = 2; range.location = ...
分类:
其他好文 时间:
2016-01-16 11:45:59
阅读次数:
159
修改UITextField的Placeholder字体颜色有一下两张方式可以达到效果。第一种:UIColor *color = [UIColor whiteColor];textfield.attributedPlaceholder = [[NSAttributedString alloc] ini...
分类:
移动开发 时间:
2016-01-13 17:45:32
阅读次数:
175
+ (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size{ CGRect rect = CGRectMake(0, 0, size.width, size.height); UIGraphicsBeginImageContext.....
分类:
其他好文 时间:
2016-01-13 17:37:06
阅读次数:
109
+ (UIColor *)colorWithHexString:(NSString *)color alpha:(CGFloat)alpha{ //删除字符串中的空格 NSString *cString = [[color stringByTrimmingCharactersInSet:[NSC.....
分类:
移动开发 时间:
2016-01-13 17:30:14
阅读次数:
210