Images not showing in iOS 7.1 with XCode 6 / Swift Images not showing in iOS 7.1 with XCode 6 / Swift swift swift

Images not showing in iOS 7.1 with XCode 6 / Swift


I've managed to overcome this by not using Asset Libraries to store my images.

Add your images to the project using the "old style naming", like Image.png and Image@2x.png, then load them without any extensions in the filename, as such:

let myImage = UIImage(named:"Image")


Fixed in XCode 6 beta 2

Images from asset catalogs in projects with a minimum deployment target of iOS 7 or OS X 10.9 will be available when running on iOS 8 and OS X 10.10, and now also iOS 7 and OS X 10.9. (17029658)

release xcode 6 beta 2 notes


For me it was because I suddenly add jpg image to Image Assets. Just resaved it as png and all work well