Contents

조회 수 1169 댓글 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];

 


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
1089 System/OS [linux] 텔넷, FTP 텍스트 모드에서 사용 hooni 2003.04.23 11939
1088 System/OS [linux] 이기종간의 파일 공유(Samba) hooni 2003.04.23 14900
1087 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 14569
1086 System/OS [linux] DNS(Domain Name System) 설치, 설정 hooni 2003.04.23 12438
1085 System/OS [linux] Masquerade 가상 ip분할기법 hooni 2003.04.23 47935
1084 System/OS [linux] DHCP(Dynamic Host Configuration Protocol) 서버 hooni 2003.04.23 13023
1083 System/OS [linux] 네트웍 트래픽 모니터링(MRTG) hooni 2003.04.23 41614
1082 System/OS [linux] 커널 컴파일, 설정 hooni 2003.04.23 17845
1081 System/OS [linux] 네트워크 커널 설정.. hooni 2003.04.23 16466
1080 System/OS [linux] 최소한의 커널 설정(커널설치 전체과정) hooni 2003.04.23 17381
1079 System/OS [linux] Xwindow/Xmanager 사용 hooni 2003.04.23 13324
1078 System/OS [linux] ipchains 옵션 hooni 2003.04.23 13603
Board Pagination Prev 1 ... 3 4 5 6 7 8 9 10 11 12 ... 98 Next
/ 98