Difference between revisions of "ApplePlatformsDevFocus"

From Lost In Wonderlands
Jump to: navigation, search
(Cocoa (older))
(Books)
 
(3 intermediate revisions by the same user not shown)
Line 14: Line 14:
  
  
 +
* [[macOS-DevFocus]]
 +
* [[iPadOS-DevFocus]]
 +
* [[iOS-DevFocus]]
 +
* [[tvOS-DevFocus]]
 +
* [[watchOS-DevFocus]]
 +
* [[xCode-DevFocus]]
 
* [[macOS]]
 
* [[macOS]]
 
* [[iPadOS]]
 
* [[iPadOS]]
Line 19: Line 25:
 
* [[tvOS]]
 
* [[tvOS]]
 
* [[watchOS]]
 
* [[watchOS]]
 
  
 
== Focus on ==
 
== Focus on ==
Line 121: Line 126:
  
 
== Books ==
 
== Books ==
 +
 +
 +
= An Apple History =
 +
 +
* https://www.folklore.org

Latest revision as of 13:06, 24 January 2021

Apple Platforms Development 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

Discover documentation

ARM ABI calling conventions

lauchd

properties list , plist

Internationalisation

  • best practices
    • Objective C
    • Swift
    • UIKit
    • Cocoa
    • SwiftUI

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


Objective C

Objective C++

Swift

Swift UI

UIKit


AppKit

Cocoa (older)


macOS

iPadOS

iOS

tvOS

watchOS

Samples

Articles

Blogs

Tools link

Books

An Apple History