0
我有一個UIImage,我分配給UIImageView。圖像無法識別ios
當我這樣做:
UIImage *picto = [UIImage imageNamed:@"animage.png"];
UIImageView *imageView1 = [[UIImageView alloc] initWithImage:picto];
它的工作原理,但是當我做:
UIImage *picto = [UIImage imageNamed:@"animage2.png"];
UIImageView *imageView1 = [[UIImageView alloc] initWithImage:picto];
不顯示我的圖像2,語法是正確的,並在項目我的形象存在。 ..
順便說一句,不顯示第二圖像只是因爲它的名字
請描述您的問題 –
您是否在使用資產目錄('.xcassets'文件)? –
創建你的圖像數組並應用'imageNamed' –