목록delegate (5)
투케이2K
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : SWIFT [소스 코드] -------------------------------------------- [1]. 클래스 내에 선언 - class A_Intro: UIViewController, AVPlayerViewControllerDelegate -------------------------------------------- class A_Intro: UIViewController, AVPlayerViewControllerDelegate { // MARK: - [내부 : 딜리게이트 : 정의 동영상 >> PIP 모드 전환 실시] func playerViewControllerShouldAutomaticallyDismissAtPictureIn..
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : OBJECTIVE-C [소스 코드] // --------------------------------------- // MARK: [KWON] : [1] : 웹뷰 로딩 상태 감지를 위해 delegate 등록 // --------------------------------------- // [웹뷰 로딩 상태 감지를 위해 delegate 등록] self.webView.delegate = self; // --------------------------------------- // --------------------------------------- // MARK: [KWON] : [2] : 웹뷰 로딩 상태 감지를 위해 delegate 등록 // --..
[개발 환경 설정] 개발 툴 : 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 개발 언어 : OBJECTIVE-C [소스 코드] - (void)applicationDidBecomeActive:(UIApplication *)application { printf("\n"); printf("==================================== \n"); printf("[AppDelegate >> applicationDidBecomeActive() :: 앱 사용자 응답 준비 확인 실시] \n"); printf("==================================== \n"); printf("\n"); } - (void)applicationWillEnterForeground:(UIApplication *)applicati..
[개발 환경 설정] 개발 툴 : XCODE 개발 언어 : SWIFT [사용 클래스 : 스토리 보드에서 Main , Sub 버튼 생성 필요] [ProtocolUtil 클래스] import UIKit // [protocol 정의 실시 : 클래스 외부에 선언] protocol SendData { // [인풋 파라미터 : 뷰 컨트롤러 , String 데이터] func sendValue(_vc: UIViewController, _value : String) } [MainController 클래스] import UIKit class MainController: UIViewController { // [뷰 컨트롤러 메모리 로드 수행 실시] override func viewDidLoad() { super..