반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- uikit
- firebase
- weak
- 후행 클로저
- Understanding Swift Performance
- Remot Push
- SWiFT
- IBOutletCollection
- ios
- RunLoop
- Choosing Between Structures and Classes
- WWDC16
- 연산 프로퍼티
- UIButton
- OperationQueue
- 진입점
- 트레일링 클로저
- DispatchQueue
- AppTransportSecurity
- tableViewCell
- 원격 푸시
- CoreLocation
- for-in
- IBOutlet
- userdefaults
- TableView
- entrypoint
- property wrapper
- 동시성프로그래밍
- viewcontroller
Archives
- Today
- Total
목록진입점 (1)
iOS 공부하는 감자
Entry Point
Entry Point란? 프로그램이 시작하는 지점을 의미한다. CPU는 Entry Point를 통해 프로그램을 실행시키기 때문에, 모든 프로그램은 반드시 Entry Point가 존재해야 한다.! Swift에서의 Entry Point C언어를 포함한 많은 프로그래밍 언어에서는 main() 함수를 Entry Point로 사용한다. Swift도 main()함수가 있다..! 다만, C언어처럼 main함수를 직접 구현하는 게 아니라 "@main"이라는 attribute symbol을 사용하여 Swift의 진입점을 지정해준다. (Swift 5.3 ~) // @main 키워드를 사용하여 Entry Point를 알려준다. @main class AppDelegate: UIResponder, UIApplicationDel..
iOS
2022. 7. 4. 19:15