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