ios:development
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen RevisionVorhergehende ÜberarbeitungNächste Überarbeitung | Vorhergehende Überarbeitung | ||
| ios:development [2015-02-27 06:43] – "Komponenten" eingefügt a.kamola | ios:development [2015-03-16 05:53] (aktuell) – [Überprüfen ob es der erste App-Start ist] Quelle eingefügt a.kamola | ||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| ====== App-Entwicklung für iOS ====== | ====== App-Entwicklung für iOS ====== | ||
| - | ===== Komponenten ===== | + | Für die iOS-App-Entwicklung |
| - | + | ||
| - | Für die App-Entwicklung | + | |
| * [[objc: | * [[objc: | ||
| - | * Teile aus [[cocoa:start|Cocoa]] | + | * [[apple:foundation:start|Foundation]] |
| - | * [[cocoa-touch:start|Cocoa Touch]] | + | |
| - | ==== Weitere | + | ===== Komponenten |
| + | * [[apple: | ||
| + | * [[apple: | ||
| * [[apple: | * [[apple: | ||
| + | * [[opengl-es: | ||
| + | * [[apple: | ||
| ===== iOS-Simulator ===== | ===== iOS-Simulator ===== | ||
| * [[xcode: | * [[xcode: | ||
| + | |||
| + | ===== Snippets ====== | ||
| + | |||
| + | ==== Überprüfen ob es der erste App-Start ist ==== | ||
| + | |||
| + | Um zu überprüfen, | ||
| + | |||
| + | <code objc> | ||
| + | - (BOOL)application: | ||
| + | { | ||
| + | if ([[NSUserDefaults standardUserDefaults] boolForKey: | ||
| + | // app already launched | ||
| + | } else { | ||
| + | [[NSUserDefaults standardUserDefaults] setBool:YES forKey: | ||
| + | [[NSUserDefaults standardUserDefaults] synchronize]; | ||
| + | // This is the first launch ever | ||
| + | } | ||
| + | |||
| + | return YES; | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | Quelle: [[http:// | ||
| + | |||
| + | ===== Testen ===== | ||
| + | |||
| + | * [[http:// | ||
| + | |||
| + | ===== Veröffentlichen ===== | ||
| + | |||
| + | * [[http:// | ||
| + | * [[http:// | ||
| ===== Links ===== | ===== Links ===== | ||
| - | * [[https:// | + | |
| + | | ||
| ==== Tutorials ==== | ==== Tutorials ==== | ||
| Zeile 37: | Zeile 71: | ||
| * [[https:// | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| - | * [[https:// | ||
| * [[https:// | * [[https:// | ||
ios/development.1425015818.txt.gz · Zuletzt geändert: 2015-02-27 06:43 von a.kamola