Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 포켓볼
- GCD
- push
- loop
- swift
- Example
- simulator
- Bitcode
- 포켓몬 GO
- 페이백
- IOS
- 공략
- setting
- swift3
- 해몽
- afterdelay
- Check
- UIView
- 앱스토어
- error
- 스마트폰
- 얻는법
- LG유플러스
- UITableView
- 신도림 테크노마트
- Xcode
- 신도림
- 아이폰7
- 보라카이
- 샘플
Archives
- Today
- Total
목록afterdelay (2)
도래울
Swift performSelector: withObject: afterDelay
Swift 3let dispatchTime = DispatchTime.now() + .seconds(0.1) DispatchQueue.main.asyncAfter(deadline: dispatchTime) { // your function here }Swift 2let dispatchTime: dispatch_time_t = dispatch_time(DISPATCH_TIME_NOW, Int64(0.1 * Double(NSEC_PER_SEC))) dispatch_after(dispatchTime, dispatch_get_main_queue(), { // your function here })
개발/iOS
2017. 2. 7. 17:25