Contents

Develop
2015.10.12 14:48

[ios] 상위 ViewController 가져오기

조회 수 1173 댓글 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. [c]디렉토리 탐색

    Date2003.04.23 CategoryDevelop Byhooni Views7339
    Read More
  2. [doc] C++언어 문법 설명서

    Date2013.04.23 CategoryDevelop Byhooni Views6195
    Read More
  3. [doc] C언어 문법 설명서

    Date2013.04.23 CategoryDevelop Byhooni Views6472
    Read More
  4. [doc] Equation Solving에 대한 발표자료..

    Date2013.04.23 CategoryDevelop Byhooni Views7998
    Read More
  5. [doc] Json Framework 설치와 사용

    Date2013.04.23 CategoryDevelop Byhooni Views21962
    Read More
  6. [doc] mfc 매뉴얼 다운 받아서 완성하기.. ㅋㄷ

    Date2013.04.23 CategoryDevelop Byhooni Views7716
    Read More
  7. [doc] UI개발시 유용한 소프트웨어 (개발 및 디버깅 툴)

    Date2013.04.23 CategoryDevelop Byhooni Views12936
    Read More
  8. [doc] 유료 방송 제어 시스템 (CAS) 발표자료

    Date2013.04.23 CategoryDevelop Byhooni Views8531
    Read More
  9. [doc] 테크니컬 레포트 (BHO 취약점을 이용한 공격)

    Date2013.04.23 CategoryDevelop Byhooni Views27145
    Read More
  10. [erp] SAP 모듈 요약

    Date2013.04.23 CategoryDevelop Byhooni Views15336
    Read More
  11. [git] 쉬운 버전관리 Git 설명

    Date2015.08.18 CategoryDevelop Byhooni Views969
    Read More
  12. [html] HTML5 튜토리얼 링크 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views12828
    Read More
Board Pagination Prev 1 ... 28 29 30 31 32 33 34 35 36 37 ... 71 Next
/ 71