Contents

Views 20260 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
393 Develop [php] 메모장 - 웅지학원 ([c] mysql 백업프로그램 포함) file hooni 2003.04.23 7036
392 Develop [c][java] 소켓 프로그래밍(채팅 서버 C, 클라이언트 Java) file hooni 2003.04.23 7035
391 Develop [js] 점점 커지는 새창.. hooni 2003.04.23 7025
390 Develop [c] 패킷 에널라이저 예제 소스(성안당) file hooni 2013.04.23 7008
389 Develop [c++] 템플릿(Template) 예제 소스.. file hooni 2013.04.23 7004
388 Develop [c] 소켓 프로그래밍 요약.. hooni 2003.04.23 6999
387 Develop [web] 웹 연동 프로그램 모음.. file hooni 2013.04.23 6985
386 Develop [c++] 트리컨트롤 스텝 2 예제.. file hooni 2013.04.23 6984
385 Develop [c] 단기과정[01/24] 정렬 알고리즘 hooni 2003.04.23 6977
384 Develop [js] 네이버, 다음의 플레이어 스킨 file hooni 2013.04.23 6975
383 Develop 라이브러리에 대한 설명 (static & dynamic library) hooni 2013.04.23 6969
382 Develop [c] 단기과정[01/06] sizeof, 실수표현, 메모리, 연산자 hooni 2003.04.23 6963
Board Pagination Prev 1 ... 61 62 63 64 65 66 67 68 69 70 ... 98 Next
/ 98