Difference between revisions of "ApplePlatformsDevFocus"
From Lost In Wonderlands
(→Focus on) |
(→Discover documentation) |
||
Line 22: | Line 22: | ||
=== Discover documentation === | === Discover documentation === | ||
− | * https://developer.apple.com/news/?id=oizmr1cr | + | * news from Apple, https://developer.apple.com/news/?id=oizmr1cr |
− | * https://developer.apple.com/documentation/technologies | + | * all documentions on technologies, https://developer.apple.com/documentation/technologies |
− | * https://developer.apple.com/documentation | + | * focus on last technologies, https://developer.apple.com/documentation |
− | * https://developer.apple.com/wwdc20/sample-code/ | + | * sample codes, https://developer.apple.com/wwdc20/sample-code/ |
=== ARM ABI calling conventions === | === ARM ABI calling conventions === |
Revision as of 08:36, 11 January 2021
Contents
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
Discover documentation
- news from Apple, https://developer.apple.com/news/?id=oizmr1cr
- all documentions on technologies, https://developer.apple.com/documentation/technologies
- focus on last technologies, https://developer.apple.com/documentation
- sample codes, https://developer.apple.com/wwdc20/sample-code/
ARM ABI calling conventions
lauchd
properties list , plist
Internationalisation
- best practices
- Objective C
- Swift
Localization
in Xcode
- first you need to generate teh string to localize using genstrings (see below)
- in xcode you can follow the geek-tricks
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
- https://developer.apple.com/documentation/swift
- https://swift.org/download/#snapshots
- https://docs.swift.org/swift-book/
- https://www.apple.com/swift/playgrounds/
Swift UI
UIKit
- https://developer.apple.com/documentation/uikit
- https://developer.apple.com/documentation/uikit/deprecated_symbols
Samples
- https://developer.apple.com/library/archive/navigation/#section=Resource%20Types&topic=Sample%20Code
- https://developer.apple.com/metal/sample-code/
- https://developer.apple.com/documentation/healthkit/samples
- https://github.com/robovm/apple-ios-samples