Contents

Views 20224 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;
}


?

  1. [ios] NavigationController 에서 왼쪽(back) 버튼 후킹하기

  2. [ios] NSString, RegularExpression Find/Replace

  3. [ios] Random Thoughts: Rand() vs. arc4random()

  4. [ios] Requesting Location Permissions in iOS

  5. [ios] UIAlertView 초간단 샘플 ㅎㅎ

  6. [ios] UIView에서 상위 UIViewController 가져오기

  7. [ios] UUID 생성 + Key Chain 연동

  8. [ios] Xcode에서 특정 파일만 ARC 따로 설정하는 방법

  9. [ios] 기본 네비게이션바의 타이틀, back버튼 위치와 속성 변경

  10. [ios] 동영상 플레이어 샘플 (for Local File)

  11. [ios] 동영상 플레이어 샘플 (for PIP Player)

  12. [ios] 동영상 플레이어 샘플 (for Remote Url)

Board Pagination Prev 1 2 3 4 5 6 Next
/ 6