Contents

Views 20240 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

UIView에서 상위에 있는 UIViewController 찾아오기


// 상위 뷰 중에 원하는 뷰컨트롤러 얻어오는 거임.
- (UIViewController*)getHomeViewController {
    for (UIView* next = [self.view superview]; next; next = next.superview) {
        UIResponder* nextResponder = [next nextResponder];
        if ([nextResponder isKindOfClass:[HoppinHomeViewController class]]) {
            return (UIViewController*)nextResponder;
        }
    }
    return nil;
}


?

List of Articles
No. Category Subject Author Date Views
633 Develop [c] UCP/TCP 채팅 소스 - 정리해야 함.. file hooni 2003.04.23 7947
632 Develop [js] 양원님이 공유해 주신 유료(5$란다ㅋ) 자료 ㅋㅋ secret hooni 2013.04.23 7948
631 Develop [c] 마우스 따라다니는 고양이 - 네코95 (WinAPI) file hooni 2013.04.23 7964
630 Develop [c++] 트리컨트롤 스텝 3 예제.. file hooni 2013.04.23 7965
629 Develop [chm] C++ 문법 가이드 file hooni 2013.04.23 7970
628 Develop [c] 퀵정렬(quick sort) 예제 소스.. file hooni 2013.04.23 7992
627 Develop [doc] Equation Solving에 대한 발표자료.. file hooni 2013.04.23 7994
626 Develop [c++] Win32API를 이용한 ExitWindowsEx 사용한 예제코드 hooni 2013.04.23 7995
625 Develop [c] 자료구조 그래프(graph) 소스코드 - 확인해볼 것.. file hooni 2013.04.23 8011
624 Develop 논문에 들어갈 툴바 테스트 해볼 것.. secret hooni 2013.04.23 8013
623 Develop [c] 문자열 처리 관련 함수들 설명 hooni 2003.04.23 8015
622 Develop [java] RGB코드를 HEX코드로 변환하는 코드 ㅎㅎ hooni 2013.04.23 8028
Board Pagination Prev 1 ... 41 42 43 44 45 46 47 48 49 50 ... 98 Next
/ 98