Difference between revisions of "ApplePlatformsDevFocus"

From Lost In Wonderlands
Jump to: navigation, search
m (Paul moved page AppleDevFocus to AppleiOSDevFocus: the page is specific to iOS)
(Localization)
Line 27: Line 27:
 
** Swift
 
** Swift
 
=== Localization ===
 
=== Localization ===
 +
 +
==== in Xcode ====
 +
* first you need to generate teh string to localize using genstrings (see below)
 +
* in xcode you can follow the geek-tricks
 +
** https://geek-is-stupid.github.io/2015-03-21-how-to-manage-all-localized-strings-in-your-ios-project-xcode/
  
 
==== using genstrings ====
 
==== using genstrings ====

Revision as of 12:34, 30 December 2019

Apple iOS Developement Focus

NeXT Steps

 here everything has yet to be done !

coming soon :


Everything You Always Wanted to Know on developement focuses... (But Were Afraid to Ask) a collection of links of interest

See also


Focus on

Internationalisation

  • best practices
    • Objective C
    • Swift

Localization

in Xcode

using genstrings

 for objective c files
 find . -name \*.m | xargs genstrings -o en.lproj
 for swift files
 find . -name \*.swift | xargs genstrings -o en.lproj
 across several folders
 find ./ -name "*.m" -print0 | xargs -0 genstrings -o en.lproj
 another tool exists to settle issues with swift :
 SwiftGenStrings

Articles

Blogs

Tools link

Books