Contents

Develop
2015.10.12 14:48

[ios] 상위 ViewController 가져오기

조회 수 2838 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

상위 ViewController 가져오기

 

UIViewController *vc;

vc = (UIViewController*)[btn.superview nextResponder];

vc = (UIViewController*)[view.superview nextResponder];

 

nextResponder

Returns the receiver'€™s next responder, or nil if it has none.

- (UIResponder *)nextResponder
Return Value

The next object in the responder chain to be presented with an event for handling.

Discussion

The UIResponder class does not store or set the next responder automatically, instead returning nil by default. Subclasses must override this method to set the next responder. UIViewimplements this method by returning the UIViewController object that manages it (if it has one) or its superview (if it doesn’t); UIViewController implements the method by returning its view’s superview; UIWindow returns the application object, and UIApplication returns nil.

Availability
  • Available in iOS 2.0 and later.
Declared In

UIResponder.h 


?

  1. [android] 가속도 센서를 이용한 흔듦(Shake) 감지

    Date2014.11.04 CategoryDevelop Byhooni Views3062
    Read More
  2. [js] 모바일 스크롤 방지(해제)

    Date2015.04.14 CategoryDevelop Byhooni Views3044
    Read More
  3. OpenSSL로 ROOT CA 생성 및 SSL 인증서 발급하기

    Date2017.10.28 CategorySystem/OS Byhooni Views3039
    Read More
  4. [Javascript][Ajax] 자바스크립트 강의 산출물

    Date2019.10.05 CategoryDevelop Byhooni Views3027
    Read More
  5. [swift] 실행시간 측정하기

    Date2021.09.14 CategoryDevelop Byhooni Views3018
    Read More
  6. [android] 간단한 SQLIite 예제

    Date2017.06.14 CategoryDevelop Byhooni Views3007
    Read More
  7. [linux] CentOS 에 APM 설치하기

    Date2015.01.02 CategorySystem/OS Byhooni Views2974
    Read More
  8. 사이버보안실무 수업 메모

    Date2017.03.30 CategoryEtc Byhooni Views2967
    Read More
  9. [ppt] 전자금융보안론 발표/설치 자료

    Date2016.05.03 CategoryPPT Byhooni Views2954
    Read More
  10. [ios] GPS 이용 상태 확인

    Date2015.04.27 CategoryDevelop Byhooni Views2934
    Read More
  11. [ppt] OCB기술개발팀 OJT 자료

    Date2015.11.13 CategoryPPT Byhooni Views2920
    Read More
  12. [mysql] MySQL 백업 및 복구

    Date2019.11.22 CategoryDatabase Byhooni Views2883
    Read More
Board Pagination Prev 1 ... 83 84 85 86 87 88 89 90 91 92 ... 99 Next
/ 99