Difference between revisions of "ApplePlatformsDevFocus"

From Lost In Wonderlands
Jump to: navigation, search
(Focus on)
(Samples)
Line 76: Line 76:
 
* https://developer.apple.com/metal/sample-code/
 
* https://developer.apple.com/metal/sample-code/
 
* https://developer.apple.com/documentation/healthkit/samples
 
* https://developer.apple.com/documentation/healthkit/samples
 +
* https://github.com/robovm/apple-ios-samples
  
 
== Articles==
 
== Articles==

Revision as of 03:54, 1 January 2020

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

ARM ABI calling conventions

lauchd

properties list , plist

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


Swift

Swift UI

UIKit

Samples

Articles

Blogs

Tools link

Books