sagarkothari
sagarkothari

Reputation: 24820

UIImage imageWithXAssets

Assume I have two assets in my project or I may have even more assets under my project.

Multiple Assets


Name of image

Upvotes: 13

Views: 18587

Answers (1)

David Snabel-Caunt
David Snabel-Caunt

Reputation: 58379

See the Asset Catalog documentation from Apple

  1. Yes, and this may help you to organise images
  2. I think one will overwrite the other. Don't give two 'images' the same name
  3. As before, use [UIImage imageNamed:@"LaunchImage"] for example
  4. Yes, apps deployed to iOS 7 can take advantage of an Xcode feature which reduces your app's download time (Xcode does this automatically)

Upvotes: 23

Related Questions