Contents

Develop
2015.10.12 14:48

[ios] 상위 ViewController 가져오기

조회 수 1170 댓글 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. [ios] 아이폰에서 진동(Vibrate) 기능 추가하기

  2. [ios] 아이폰 앱 이름 및 버전 정보

  3. [ios] 아이폰 개발 총정리..

  4. [ios] 아이폰 개발 따라하기 ㅋㅋㅋ

  5. [ios] 아이폰 GPS 사용하기

  6. [iOS] 시뮬레이터에 푸시 알림을 보내는 방법

  7. [ios] 스터디 자료 (from 종길M)

  8. [ios] 스크린 캡쳐 (전원버튼 + 홈버튼) 호출 알아내기

  9. [ios] 소소한 팁 (Rect,Point,Path,URL 등)

  10. [ios] 설정에서 푸시 알림(APNS) on/off 상태 확인

  11. [ios] 새로 만들고 있는 DateMemo

  12. [ios] 상위 ViewController 가져오기

Board Pagination Prev 1 ... 44 45 46 47 48 49 50 51 52 53 ... 98 Next
/ 98