正如你所看到的,我已經把我的國旗在Xcode的文件夾中,我試圖把它顯示在導航欄後空。但是,它沒有顯示出來,我發現:UIImage的是調用imageWithContentsOfFile
NSString *imageName = [NSString stringWithFormat:@"%@.icns",countryName]; UIImage *image = [UIImage imageWithContentsOfFile:imageName];
形象是「無」。
有什麼想法?謝謝!
正如你所看到的,我已經把我的國旗在Xcode的文件夾中,我試圖把它顯示在導航欄後空。但是,它沒有顯示出來,我發現:UIImage的是調用imageWithContentsOfFile
NSString *imageName = [NSString stringWithFormat:@"%@.icns",countryName]; UIImage *image = [UIImage imageWithContentsOfFile:imageName];
形象是「無」。
有什麼想法?謝謝!
你可以使用這樣的
NSString *imageName = [NSString stringWithFormat:@"%@.icns",countryName];
UIImage *image = [UIImage imageNamed:imageName];
請嘗試這個
在哪裏您要發送的圖像路徑的NSString到這裏
UIImage imageWithContentsOfFile:imageName
發送的路徑方法。或者像這樣做
UIImage *image = [UIImage imageNamed:[NSString stringwithFormat:@"%@.icns",countryName]];
我也試過這個,結果是一樣的 - 有什麼其他原因? – Yashu
你正在發送的圖像路徑在哪裏NSString在這裏'UIImage imageWithContentsOfFile:imageName'發送路徑到該方法。或者像這樣'UIImage * image = [UIImage imageNamed:[NSString stringwithFormat:@「%@。icns」,countryName]];' – Sumanth