// delay 1 - performSelector
[self performSelector:@selectors(changeName:) withObject:nil afterDelay:5.0];
// delay 2 - dispatch_after
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
lblName.text = @"dispatch_after 편하네";
});
'iOS > iOS 앱개발' 카테고리의 다른 글
[swift] 앱에서 다른 앱 호출하기2 (1) | 2019.12.01 |
---|---|
[iOS] 객체 간 통신 - Notification (0) | 2019.11.24 |
[Swift] 앱에서 다른 앱 호출하기 (0) | 2019.11.18 |
[swift] Codable을 이용해 json 파일 파싱하기 (0) | 2019.11.16 |
[iOS] Delegate와 Callback 메서드의 차이점 (0) | 2019.10.30 |