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
- windowScene
- RxSwift
- SWIFT
- App Signing
- Large File Storage
- Dispatch.main.sync
- RxCocoa
- in-out
- 잡초가득블로그
- rib
- Concurrent
- RIBs Tutorial
- 대머리깃허브
- Apple Certificate
- conflicting access to memory
- iOS 버전 점유율
- coordinateSpace
- memory safety
- Automatically manage signing
- iOS Target
- swiftdocs
- Github file size
- Dependency Rule
- UICoordinateSpace
- 클린아키텍쳐
- 메모리 접근 충돌
- Ribs
- Git Large File Storage
- 로버트마틴형
- ios
Archives
- Today
- Total
빙수왕의 개발일지
main.m의 main함수는 왜 main(void)가 아닐까? 본문
main.m
objc는 c계열이라서 진입점 함수가 필요하다.
진입점 함수는 main.m 파일의 int main(int argc, char *argv[])이다.
int main(int argc, char argv)
파라미터가 있는 이유 → IOS는 UNIX기반이라 UNIX에서 사용하는 그대로 main형태 사용한다.
이것의 결과로 리턴되는 UIApplication 객체 → shared에 저장된다.
그리고 shared가 가지고 있는 shared.delegate 도 할당된다.
return UIApplication(1,2,3,4)
3 → UIApplication의 클래스이름
4 → UIApplicationDelegate의 클래스 이름
둘다 nil 하면 이름 그대로(UIApplication, AppDelegate) 간다.
'개발 > iOS' 카테고리의 다른 글
StackView distribution 속성 정리 (0) | 2021.02.23 |
---|---|
reusableCell의 force casting은 나쁜걸까 (0) | 2021.02.12 |
CleanSwift 프로젝트 생성해보기 (0) | 2021.02.10 |
엔터프라이즈 빌드는 성공하는데 아카이빙에 실패할 때 (0) | 2021.02.10 |
UIView의 layer에 대하여 (0) | 2020.12.06 |