Duck
Duck

Reputation: 35943

Localizing a XIB, different method on Xcode 6

On previous versions of Xcode, when you localized a XIB it would create copies of that XIB on the language folders. Now, when you do the same thing, Xcode created localized strings for every language.

My question is: will this method work on iOS 7 if I compile my target for that version or will this just work for iOS 8?

Upvotes: 1

Views: 112

Answers (1)

Jkmn
Jkmn

Reputation: 571

It will most likely work but there's a few cases where it won't.

A storyboard or XIB will not localize correctly if all of the following three conditions are true: The storyboard or XIB uses size classes. The base localization and the build target are set to Universal. The build targets iOS 7.0.

(details in the release notes page 32)

Upvotes: 1

Related Questions