objective c - App thinning with deployment target set to iOS 6 -


to take advantage of app thinning feature came along ios 9, have use xcassets catalog in our project. however, document said:

xcode 6 provides different functionality asset catalogs depending on deployment target project:

for projects, individual images can loaded using set names.

for projects deployment target of @ least ios 7 or os x 10.9, xcode compiles asset catalogs runtime binary file format reduces download time app.

if deployment target set ios 7, assets catalog compiled .car file, while target of ios 6, images copied app bundle.

so question is:

  • if use assets catalog instead of bundles, let deployment target stay on ios 6, , upload app archive itunes connect, server app slicing devices running ios 9?
  • if have @2x images in asset catalog, sliced app include images iphone 6 plus devices?

thanks in advance!

ok, after several tests, got answers.

  1. app slicing not applied if set deployment target ios 6. images in images.xcassets copied app bundle. so, if want image resources sliced on ios 9, have set deployment target ios 7 or higher.
  2. yes, does.

Comments

Popular posts from this blog

javascript - Chart.js (Radar Chart) different scaleLineColor for each scaleLine -

apache - Error with PHP mail(): Multiple or malformed newlines found in additional_header -

java - Android – MapFragment overlay button shadow, just like MyLocation button -