Fr 05/09/16

1) How to start application in Xcode for different languages while testing.

     In order to change default order of languages only for your XCode project, you can go to the Product > Scheme > Edit scheme, and add argument to "Run" scheme, for example: -AppleLanguages "(English,Russian)".

2) Go through all strings and take them to localizable.strings

Type “cd ”, then drag in your project folder, then press enter to navigate to your project:

find ./ -name "*.m" -print0 | xargs -0 genstrings -o en.lproj

3)  Git steps to create pull request

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Комментарии

Популярные сообщения из этого блога

Xcode Source Extensions Setup

Find out, what controller is on the top.

Swizzling UIButton example