码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
根据UIColor对象,返回一张图片UIimage对象
-(UIImage*)createImageWithColor: (UIColor*) color{ CGRect rect=CGRectMake(0,0, 1, 1); UIGraphicsBeginImageContext(rect.size); CGContextRef co...
分类:其他好文   时间:2016-01-21 18:39:57    阅读次数:115
iOS常用技术-七彩方块
//// 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
解决UITableView数据没有充满屏幕时,显示多余的空白cell的问题
#pragma mark 去除多余的线-(void) clearExtrLine{ UIView *view = [[UIView alloc] init]; view.backgroundColor = [UIColor clearColor]; [tableView setTa...
分类:其他好文   时间:2016-01-19 15:44:25    阅读次数:118
0118——UILabel和导入字体
UILabel * label = [[UILabel alloc]initWithFrame:CGRectMake(10, 100, 300, 100)];1.设置文字颜色 label.textColor = [UIColor orangeColor]; label2...
分类:其他好文   时间:2016-01-18 20:44:29    阅读次数:171
UILabel + 导入字体
UILabel * label = [[UILabel alloc]initWithFrame:CGRectMake(10, 100, 300, 100)];1.设置文字颜色 label.textColor = [UIColor orangeColor]; label2...
分类:其他好文   时间:2016-01-18 11:55:33    阅读次数:123
iOS 实现类似雷达效果的核心代码
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
iOS修改UITextField的Placeholder字体颜色
修改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
iOS识别16进制颜色表方法
+ (UIColor *)colorWithHexString:(NSString *)color alpha:(CGFloat)alpha{ //删除字符串中的空格 NSString *cString = [[color stringByTrimmingCharactersInSet:[NSC.....
分类:移动开发   时间:2016-01-13 17:30:14    阅读次数:210
848条   上一页 1 ... 28 29 30 31 32 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!