In my project I manage 2 languages using Storyboard, this mean that I've 2 layouts in storyboard
Main SB for iPhone with 2 childs for 2 languages
Is there a way for have 1 SB and manage languages in another way?
Now, in Storyboard proprieties, I've "Localization" option with 2 flags for 2 languages managed
In Project Navigator I show my Storyboard with 2 childs, for 2 languages
MainStoryboard (language 1)
MainStoryboard (language 2)
So I've 2 childs with layouts for all views
In Resources folder I've
AppLanguages.plist with 2 childs
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd>">
<plist version="1.0">
<dict>
<key>name</key>
<string>English</string>
<key>code</key>
<string>en</string>
</dict>
</plist>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd>">
<plist version="1.0">
<dict>
<key>name</key>
<string>Italian</string>
<key>code</key>
<string>it</string>
</dict>
</plist>
in Resources/Localization/en/1 file localizable.strings with 2 childs:
localizable.strings (language 1)
localizable.strings (language 2)
That allows me to manage some translation in app... but I'm still having 2 SB :-(
Can you suggest me best way for manage this problem? Or where I'm missing...
Thanks
Main SB for iPhone with 2 childs for 2 languages
Is there a way for have 1 SB and manage languages in another way?
Now, in Storyboard proprieties, I've "Localization" option with 2 flags for 2 languages managed
In Project Navigator I show my Storyboard with 2 childs, for 2 languages
MainStoryboard (language 1)
MainStoryboard (language 2)
So I've 2 childs with layouts for all views
In Resources folder I've
AppLanguages.plist with 2 childs
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd>">
<plist version="1.0">
<dict>
<key>name</key>
<string>English</string>
<key>code</key>
<string>en</string>
</dict>
</plist>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd>">
<plist version="1.0">
<dict>
<key>name</key>
<string>Italian</string>
<key>code</key>
<string>it</string>
</dict>
</plist>
in Resources/Localization/en/1 file localizable.strings with 2 childs:
localizable.strings (language 1)
localizable.strings (language 2)
That allows me to manage some translation in app... but I'm still having 2 SB :-(
Can you suggest me best way for manage this problem? Or where I'm missing...
Thanks