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