码迷,mamicode.com
首页 > 其他好文 > 详细

创建UIImage的两种方法

时间:2014-09-26 19:03:08      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   sp   div   on   c   log   

1.

UIImage *img = [UIImage imageNamed:@"imageName"];

 

2.

NSString *imageFilePath = [[NSBundle mainBundle] pathForResource:@"100" ofType:@"jpg"];
NSData *imageData = [NSData dataWithContentsOfFile:imageFilePath];
UIImage *image = [UIImage imageWithData:imageData];

 

创建UIImage的两种方法

标签:style   blog   color   for   sp   div   on   c   log   

原文地址:http://www.cnblogs.com/lear/p/3995159.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!