转自:http://www.cocoachina.com/bbs/read.php?tid-27420.html
myImage = [UIImage imageWithContentsOfFile:path];
-----------------------------------------------------------------------------
补充:
[UIImage imageNamed:]在某些情况下有利于减少内存使用,比如当一个图片在UITableView里显示10次时,使用这种方法,只会在内存中存在一个图片,而不是分配10个图片空间。
参考资料:http://blog.csdn.net/koupoo/article/details/6624293