Contents

조회 수 1293 댓글 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. [mac] OS X 엘 캐피탄에서 Soudflower 사용하기

    Date2016.10.03 CategorySystem/OS Byhooni Views1164
    Read More
  2. [mac] Mac OS에서 재생되는 사운드를 녹음하는 방법

    Date2016.10.03 CategorySystem/OS Byhooni Views1733
    Read More
  3. [c] Mac OS 에 gmp(gmp.h) 라이브러리 설치

    Date2016.10.03 CategoryDevelop Byhooni Views1436
    Read More
  4. [ios][swift] 초간단 카달로그 앱 (Catalog App)

    Date2016.06.27 CategoryDevelop Byhooni Views7283
    Read More
  5. [ios] 웹뷰 history.back() ㅋㄷ

    Date2016.06.27 CategoryDevelop Byhooni Views2021
    Read More
  6. [ios] 기본 네비게이션바의 타이틀, back버튼 위치와 속성 변경

    Date2016.05.16 CategoryDevelop Byhooni Views2186
    Read More
  7. [ios] UUID 생성 + Key Chain 연동

    Date2016.05.13 CategoryDevelop Byhooni Views4771
    Read More
  8. [ios] Did UIScrollView End Scrolling?

    Date2016.04.19 CategoryDevelop Byhooni Views1164
    Read More
  9. [ios] NavigationController 에서 왼쪽(back) 버튼 후킹하기

    Date2015.10.23 CategoryDevelop Byhooni Views1293
    Read More
  10. [ios] 언어, 지역, 국가 설정 가져오기

    Date2014.05.12 CategoryDevelop Byhooni Views270897
    Read More
  11. [unix] 로그파일 정리 쉘스크립트

    Date2014.02.19 CategoryDevelop Byhooni Views10866
    Read More
  12. [c] 64bit 머신에서 inet_ntoa() 사용시 Segment fault 대처 방법법

    Date2014.02.08 CategoryDevelop Byhooni Views14259
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 Next
/ 7