Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Xcode 5 Asset Catalog backwards compatible with pre-iOS 7?

Xcode 5 introduced Asset Catalog, which seems very cool. However I haven't find much information about it. Specifically, I'm interested whether the usage of Asset Catalog has any impact on the app regarding its compatibility.

Is Asset Catalog iOS 7 specific feature (i.e. iOS has to be able to handle it) or it is just convenience tool of Xcode?

Also, I will be grateful for any relevant information resources / links.

Thank you for answers

like image 991
Lukas Kukacka Avatar asked Sep 26 '13 14:09

Lukas Kukacka


People also ask

Is Xcode backwards compatible?

Starting in Xcode 13.2, Swift's new suite of concurrency features are now backward compatible all the way back to iOS 13, macOS Catalina, watchOS 6, and tvOS 13. The new concurrency features include async/await, actors, structured concurrency, async sequences, and more.


2 Answers

Yes, it is backwards compatible.

The documentation says:

Xcode 5 provides different functionality for asset catalogs depending on the deployment target for your project:

  • For all projects, individual images can be loaded using set names.
  • For projects with a deployment target of iOS 7, Xcode compiles your asset catalogs into a runtime binary file format that reduces the download time for your app.

The new binary file format is only used if your deployment target is set to iOS 7. Otherwise it defaults back to simply putting all of the individual image files into your resources folder, as before.

like image 184
Dave DeLong Avatar answered Sep 20 '22 08:09

Dave DeLong


Yes, it's definitely compatible with iOS6. Not sure about 5.

However, if you use it with earlier than 7.0 then you are not able to use the resizable images feature of asset catalogs.

like image 36
Fogmeister Avatar answered Sep 21 '22 08:09

Fogmeister