加載數(shù)據(jù)的一些方法----根據(jù)路徑尋找
1.獲取項目路徑
①.獲取應用程序包的根路徑
NSString *resourcePath=[[NSBundle mainBundle] resourcePath];
②.圖像路徑
NSString *path=[resourcePath stringByAppendingPathComponent:@"icon.png"];
2.獲取沙盒路徑
①.沙盒下的Documents目錄
NSString *path=[NSHomeDirectory() stringByAppendingPathComponent:@"Documents/icon.png"];
3.通過路徑找對應的圖片文件
UIImage *image=[UIImage imageWithContentsOfFile:path];