iOS开发中的遇到的一些小技术缩短开发周期(持续收集)
摘要:
1、用UIColor做成UIImage,我现在用于iOS7的UIButton上,扁平化风格:+ (UIImage *)imageWithColor:(UIColor *)color{ CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f); UIGraphicsBeginImageContext(rect.size); CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSetFillColorWithColor(context, [color C... 阅读全文
posted @ 2013-11-18 22:49 lonelysoul 阅读(263) 评论(0) 推荐(0) 编辑