목록rootViewController (2)
투케이2K
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : OBJECTIVE-C [소스 코드] // ---------------------------------- UIAlertController *alert_push = [UIAlertController alertControllerWithTitle:@"푸시 메시지 알림" message:@"푸시 내용" preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction *ok = [UIAlertAction actionWithTitle:@"확인" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) { printf("\n"); printf(..
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : SWIFT [소스 코드] // MARK: - [present 이동 최상위 뷰 컨트롤러 확인 실시] func presentTopViewController() -> UIViewController? { /* -------------------------------------------- [요약 설명] 1. 해당 로직으로 체크할 경우 이전 뷰 컨트롤러 (A_Intro) 가 viewDidDisappear 뷰 종료 상태 상태가 되어야하고, 현재 뷰 컨트롤러 (A_Main) 가 viewDidAppear 뷰 화면 표시가 되어야합니다 -------------------------------------------- 2. present 방식 : // [스토리보..