티스토리 뷰
프로그래밍/ios
[ios] Find the current top view controller for your iOS application
mochitree 2015. 6. 5. 18:55
- (UIViewController *)topViewController{
return [self topViewController:[UIApplication sharedApplication].keyWindow.rootViewController];
}
- (UIViewController *)topViewController:(UIViewController *)rootViewController
{
if (rootViewController.presentedViewController == nil) {
return rootViewController;
}
if ([rootViewController.presentedViewController isMemberOfClass:[UINavigationController class]]) {
UINavigationController *navigationController = (UINavigationController *)rootViewController.presentedViewController;
UIViewController *lastViewController = [[navigationController viewControllers] lastObject];
return [self topViewController:lastViewController];
}
UIViewController *presentedViewController = (UIViewController *)rootViewController.presentedViewController;
return [self topViewController:presentedViewController];
}
'프로그래밍 > ios' 카테고리의 다른 글
NSDate to NSString 형변환 (0) | 2015.09.23 |
---|---|
UITebleView row 삭제할 때 (0) | 2015.09.22 |
[IOS] KEYBOARD 화면 이동 (0) | 2015.06.04 |
[ios] milliseconds to NSDate (0) | 2015.04.28 |
xcode에서 앱 아이콘 사이즈, 파일명 정리 (0) | 2015.04.06 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 봄봄봄
- Re:NK
- 막국수
- 남자화장품
- resize
- Android
- ios
- xcode8
- serialize
- 엘지
- 휴게소
- 리엔케이
- 참나무숯불닭갈비
- 킹스맨
- crop
- custom font
- 안드로이드 라이브러리
- 안드로이드
- gitgub
- ListView
- 가평휴게소
- keyboard
- 아이콘 사이즈
- git flow
- android jar
- xcode7
- 코드 하이라이트
- Xcode
- ShardPreferenes
- cocoapods
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함