YagomCareerStarterCamp-6 / Interview-study-in-swift

1 stars 0 forks source link

[5주차] Q1_@Main에 대해서 설명하시오. #13

Open seohyeon2 opened 1 year ago

seohyeon2 commented 1 year ago

꼬리질문

kiwi1023 commented 1 year ago

@main은 어디서부터 이 앱이 최초 실행되고 시작될지를 명시해주는 키워드(UIKit프레임워크에 존재하는 main() 함수를 사용한다는 의미)

Groot-94 commented 1 year ago

프로젝트에서 코드의 시작점을 명시해주는 키워드이다. UIKit 프레임워크 내부의 main() 메서드를 호출하게 된다. @UIApplicionMain에서 변경

Judy-999 commented 1 year ago

앱의 시작 지점을 나타내는 키워드로 App conformer의 선언 앞에 @main 속성이 있는 경우 시스템이 main() 메서드를 호출하여 앱이 시작합니다.

seohyeon2 commented 1 year ago

답변


꼬리질문