Difference between revisions of "IOS 9 App Development Essentials"

From Techotopia
Jump to: navigation, search
Line 392: Line 392:
 
#* [[iOS 9 Database Implementation using SQLite|Closing a SQLite Database]]<br><br>
 
#* [[iOS 9 Database Implementation using SQLite|Closing a SQLite Database]]<br><br>
 
# [[An Example SQLite based iOS 9 Application using Swift and FMDB]]
 
# [[An Example SQLite based iOS 9 Application using Swift and FMDB]]
 +
#* [[An Example SQLite based iOS 9 Application using Swift and FMDB|About the Example SQLite Application]]
 +
#* [[An Example SQLite based iOS 9 Application using Swift and FMDB|Creating and Preparing the SQLite Application Project]]
 +
#* [[An Example SQLite based iOS 9 Application using Swift and FMDB|Checking Out the FMDB Source Code]]
 +
#* [[An Example SQLite based iOS 9 Application using Swift and FMDB|Designing the User Interface]]
 +
#* [[An Example SQLite based iOS 9 Application using Swift and FMDB|Creating the Database and Table]]
 +
#* [[An Example SQLite based iOS 9 Application using Swift and FMDB|Implementing the Code to Save Data to the SQLite Database]]
 +
#* [[An Example SQLite based iOS 9 Application using Swift and FMDB|Implementing Code to Extract Data from the SQLite Database]]
 +
#* [[An Example SQLite based iOS 9 Application using Swift and FMDB|Building and Running the Application]]<br><br>
 +
# [[Working with iOS 9 Databases using Core Data]]

Revision as of 15:47, 18 December 2015

Table of Contents

  1. Start Here
  2. Joining the Apple Developer Program
  3. Installing Xcode 7 and the iOS 9 SDK
  4. A Guided Tour of Xcode 7
  5. An Introduction to Xcode 7 Playgrounds
  6. Swift 2 Data Types, Constants and Variables
  7. Swift 2 Operators and Expressions
  8. Swift 2 Flow Control
  9. The Swift 2 Switch Statement
  10. An Overview of Swift 2 Functions
  11. The Basics of Object Oriented Programming in Swift 2
  12. An Introduction to Swift Subclassing and Extensions
  13. Working with Array and Dictionary Collections in Swift 2
  14. Understanding Error Handling in Swift 2
  15. Creating an Interactive iOS 9 App
  16. An Introduction to Auto Layout in iOS 9
  17. Working with iOS 9 Auto Layout Constraints in Interface Builder
  18. An iOS 9 Auto Layout Example
  19. Implementing iOS 9 Auto Layout Constraints in Code
  20. Implementing Cross-Hierarchy Auto Layout Constraints in iOS 9
  21. Understanding the iOS 9 Auto Layout Visual Format Language
  22. Using Size Classes to Design Adaptable Universal iOS 9 User Interfaces
  23. Using Storyboards in Xcode 7
  24. Organizing Scenes over Multiple Xcode Storyboard Files
  25. Using Xcode 7 Storyboards to Create an iOS 9 Tab Bar Application
  26. Working with the iOS 9 Stack View Class
  27. An iOS 9 Stack View Tutorial
  28. An iOS 9 Split View Master-Detail Example
  29. A Guide to Multitasking in iOS 9
  30. An iOS 9 Multitasking Example
  31. Implementing a Page based iOS 9 Application with UIPageViewController
  32. An Example iOS 9 UIPageViewController Application
  33. Working with Directories in Swift on iOS 9
  34. Working with Files in Swift on iOS 9
  35. iOS 9 Directory Handling and File I/O in Swift – A Worked Example
  36. Preparing an iOS 9 App to use iCloud Storage
  37. Managing Files using the iOS 9 UIDocument Class
  38. Using iCloud Storage in an iOS 9 Application
  39. Synchronizing iOS 9 Key-Value Data using iCloud
  40. iOS 9 Database Implementation using SQLite
  41. An Example SQLite based iOS 9 Application using Swift and FMDB
  42. Working with iOS 9 Databases using Core Data