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
- xcode
- GCM
- In-app Billing
- android studio
- 배포
- Android
- 카카오톡
- ios9
- AccountManager
- Android O
- ios
- 안드로이드 개발 레벨업 교과서
- 다른 앱에서 열기
- service
- Google Cloud Messasing
- BLOCK
- 트위터
- contentprovider
- 데이터 공유
- Android O Preview
- Google Cloud Messasging
- HTTP
- 페이스북
- gradle
- signing
- NSURLConnection
- Unchecked Exception
- unreal
- Push
- Activity 수명 주기
Archives
- Today
- Total
목록UIView (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