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