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 |
Tags
- 얻는법
- Check
- IOS
- 보라카이
- 스마트폰
- swift3
- afterdelay
- 포켓볼
- error
- push
- 앱스토어
- swift
- Example
- LG유플러스
- 아이폰7
- 페이백
- 공략
- GCD
- Xcode
- 샘플
- Bitcode
- setting
- 포켓몬 GO
- 신도림 테크노마트
- UITableView
- simulator
- 해몽
- UIView
- loop
- 신도림
Archives
- Today
- Total
목록push (2)
도래울
iOS Push state check
let notificationType = UIApplication.sharedApplication().currentUserNotificationSettings()!.types if notificationType == UIUserNotificationType.None { print("OFF") } else { print("ON") }
개발/iOS
2016. 11. 2. 15:06
ios get the previous viewcontroller that pushed my current view
objective cNSLog(@"%@",[self.navigationController.viewControllers objectAtIndex:self.navigationController.viewControllers.count-2]); swift let n: Int! = self.navigationController?.viewControllers?.count let myUIViewController = self.navigationController?.viewControllers[n-2] as! UIViewController
개발/iOS
2016. 7. 15. 10:22