completion: nil
#import "myViewController.h"
@property (nonatomic, retain) myViewController *myViewController;
...
_myViewController = [[myViewController alloc] init];
[self presentViewController: _myViewController animated:YES completion: nil];
completion: nil != nil
#import "myViewController.h"
@property (nonatomic, retain) myViewController *myViewController;
...
_myViewController = [[myViewController alloc] init];
[self presentViewController: _myViewController animated:YES completion: ^{
}];
'iOS > Objective-C' 카테고리의 다른 글
Objective-C) 생체인증타입 확인 (0) | 2024.06.21 |
---|---|
Objective-C) 클래스 객체함수 호출하기 (0) | 2024.06.20 |
Objective-C) 캡쳐방지 (0) | 2024.06.19 |
Objective-C) Keyboard Layout 감지 (0) | 2024.05.30 |
Objective-C) UIView 맨 앞으로 이동 (0) | 2024.05.20 |