Contents

조회 수 1198 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

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

단축키

Prev이전 문서

Next다음 문서

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

후킹이라기보다 교체? ㅋㄷ

방법이 많음..

 

UIBarButtonItem *backButton = [[UIBarButtonItem alloc]
    initWithTitle:@"Back"
    style:UIBarButtonItemStyleBordered
    target:self
    action:@selector(backButtonTapped:)];

self.navigationItem.leftBarButtonItem = backButton;

 

UIBarButtonItem *backButton = [[UIBarButtonItem alloc] 
    initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh
    target:self
    action:@selector(backButtonTapped:)];
self.navigationItem.leftBarButtonItem = backButton;

 

UIImage *backButtonImage = [UIImage imageNamed:@"back_arrow.png"];
UIButton *leftBarButton = [UIButton buttonWithType:UIButtonTypeCustom];

// Setting the image for the back button
[leftBarButton setBackgroundImage:backButtonImage forState:UIControlStateNormal];
[leftBarButton addTarget:self action:@selector(backButtonTapped:) forControlEvents:UIControlEventTouchUpInside];

// setting the frame for the back button
leftBarButton.frame = CGRectMake(0, 0, 65, 32);

// setting the custom button to navigationbars back button
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:leftBarButton];

 


?

  1. [ios] iOS에서 디바이스 종류 알아오기

  2. [ios] iphone SetDeviceOrientation 화면 강제 회전

  3. [ios] libxml/tree.h file not found

  4. [ios] Locale Identifiers

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

  6. [ios] None IB vs. StoryBoard 샘플 소스

  7. [ios] NSData to NSString (NSString to NSData)

  8. [ios] NSData 클래스에 대해 (NSData <-> char*)

  9. [ios] NSMutableString 문자열 패턴 교환

  10. [ios] NSNotificationCenter 초간단 사용 예~ ㅋㄷ

  11. [ios] NSString URL Encode/Decode (인코딩/디코딩)

  12. [ios] NSString 간단한 정규식 사용법

Board Pagination Prev 1 ... 38 39 40 41 42 43 44 45 46 47 ... 98 Next
/ 98