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
- 배포
- Unchecked Exception
- HTTP
- signing
- Google Cloud Messasing
- AccountManager
- 안드로이드 개발 레벨업 교과서
- gradle
- Android O
- service
- contentprovider
- 다른 앱에서 열기
- unreal
- In-app Billing
- android studio
- 데이터 공유
- 페이스북
- xcode
- ios9
- GCM
- Google Cloud Messasging
- BLOCK
- NSURLConnection
- Android
- ios
- 카카오톡
- Activity 수명 주기
- Android O Preview
- Push
- 트위터
Archives
- Today
- Total
목록UIViewController (1)
노블의 개발이야기
[iOS] UIView에서 상위 UIVewController 가져오기
UIView에서 상위 UIVewController를 가져오기 @interface UIView (GetViewController)- (UIViewController *)viewController;@end @implementation UIView (GetViewController) - (UIViewController *)viewController;{id nextResponder = [self nextResponder];if (nextResponder == nil) {return nil;}NSLog(@"%s", object_getClassName(nextResponder));if ([nextResponder isKindOfClass:[UIViewController class]]) {return nextResp..
iOS
2015. 7. 13. 18:01