I\'d like to display the app icon inside my app. The icon is in the default assets catalog (Images.xcassets).
Images.xcassets
How do you load it? I tried the following and
By inspecting the bundle I found that the icon images were renamed as:
AppIcon76x76~ipad.png AppIcon76x76@2x~ipad.png AppIcon60x60@2x.png
And so on.
Thus, using [UIImage imageNamed:@"AppIcon76x76"] or similar works.
[UIImage imageNamed:@"AppIcon76x76"]
Is this documented somewhere?