簡述:app 本身就是一個大的 bundle 資源包孵构〗壳可以存各種資源熬词。
mainBundle 獲取圖片加載 舉例
// 主目錄 包
NSString *myBundleSourcePath = [[NSBundle mainBundle] pathForResource:@"Icon-Small" ofType:@"png"];
// 獲取資源
UIImage *myBundleImage = [UIImage imageWithContentsOfFile:myBundleSourcePath];
customBundle 獲取圖片加載 舉例
// 主目錄 包中包 先獲取主目錄中的customBundle
NSString *aBundleSourcePath = [[NSBundle mainBundle] pathForResource:@"testBoundle" ofType:@"bundle"];
NSBundle *bundle = [NSBundle bundleWithPath:aBundleSourcePath];
// 然后在 customBundle 中獲取資源净刮,此時必須 添加路徑
aBundleSourcePath = [bundle pathForResource:@"Icon-60" ofType:@"png" inDirectory:@"XImages"];
// 獲取資源
UIImage *aBundleImage = [UIImage imageWithContentsOfFile:aBundleSourcePath];
關(guān)于資源包 還有很多系統(tǒng)方法
還沒研究具温,
1