iOS Design Pattern

iOS Design Pattern

Sources from

MVC model

➝ Relationship beteween camps.

➝ Can the View speack to its Controller?

➝ View do not own the data they display.

➝ Models are UI Independent.

➝ MVCs working together.


The Structure of an iOS App

The role of objects in an iOS app

➝ UI Application object

➝ App delegate object

➝ Documents and data model objects

➝ View controller objects

➝ UI Window object

➝ View obejects, control objects, layer objects

View Controller Lifecycle

iOS calls the UIViewController methods as follows:


Sample Code

AppDelegate.swift

The AppDelegate.swift source file has two primary functions:

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
    // Override point for customization after application launch.
    return true
    }

    func applicationWillResignActive(_ application: UIApplication) {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
    }

    // 여기에 주로 terminate 될 때의 데이터 저장 등의 기능들을 정의함
    func applicationDidEnterBackground(_ application: UIApplication) {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
    }

    func applicationWillEnterForeground(_ application: UIApplication) {
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
    }

    // 여기까지 와야 화면이 뜸
    func applicationDidBecomeActive(_ application: UIApplication) {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
    }


    // 더블클릭해서 날리는 것만 applicationWillTerminate, terminate에 대한 모든 경우를 보증하지는 않음
    func applicationWillTerminate(_ application: UIApplication) {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
    }

}

ViewController.swift

import UIKit
 
class ViewController: UIViewController {
    
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
    }
    
}