我有在的UIImageView顯示UIImage的問題。我查看了所有類似問題的stackoverflow,但沒有任何修復幫助我。的UIImage爲的UIImageView是零
- 的圖像確實是在我的包
- 文件檢查器 - >目標會員的檢查圖像
- IBOutlet中連接
- 兩個PNG(同時使用IBOutlet中和編程做我都試過)也不JPG工作
下面是使用界面生成器的代碼 -
//@property and @synthesize set for IBOutlet UIImageView *imageView
- (void)viewDidLoad
{
[super viewDidLoad];
NSAssert(self.imageView, @"self.imageView is nil. Check your IBOutlet connection");
UIImage *image = [UIImage imageNamed:@"banner.jpg"];
NSAssert(image, @"image is nil");
self.imageView.image = image;
}
該代碼將與NSAssert,在控制檯「圖像是nil」印刷終止。
我還試圖直接從屬性檢查員選擇圖像:
然而它仍然不顯示圖像(靜止與NSAssert終止 - 「圖像是零」)。
任何幫助或建議,將不勝感激。
感謝
嘗試測試它是否是零 – geraldWilliam
你的圖像添加到目標之前設置圖像的圖像視圖? – NeverBe
@geraldWilliam試了一下,沒有工作... – yeesterbunny