I'd like to display the app icon inside my app. The icon is in the default assets catalog (Images.xcassets
).
How do you load it? I tried the following and they all return nil
:
image = [UIImage imageNamed:@"AppIcon"];
image = [UIImage imageNamed:@"icon"];
image = [UIImage imageNamed:@"icon-76"];
image = [UIImage imageNamed:@"icon-60"];
Other images in the assets catalog work as expected.