Contents

Develop
2014.01.09 14:19

[ios] UIButton multi-line iOS7

조회 수 11437 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

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

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
예전에 멀티라인 버튼을 아래처럼 작성했던게..
button.titleLabel.lineBreakMode = UILineBreakModeWordWrap;
button.titleLabel.textAlignment = UITextAlignmentCenter;
[button setTitle: @"Line1\nLine2" forState: UIControlStateNormal];

iOS6 에서 UILineBreakModeWordWrap, UITextAlignmentCenter 이게 deprecated 됨..
그래서.. 이렇게~
button.titleLabel.lineBreakMode = NSLineBreakByWordWrapping;
button.titleLabel.textAlignment = NSTextAlignmentCenter;
[button setTitle: @"Line1\nLine2" forState: UIControlStateNormal];

Background, Text, Multi-Line 샘플..
_button = [UIButton buttonWithType:UIButtonTypeCustom];
_button.frame = CGRectMake(buttonWidth*1, 65, buttonWidth, 43);
_button.titleLabel.font = [UIFont systemFontOfSize:12];
_button.titleLabel.lineBreakMode = NSLineBreakByWordWrapping;
_button.titleLabel.textAlignment = NSTextAlignmentCenter;

[_button setTitle:@"라인1\n라인2" forState:UIControlStateNormal];

[_button setTitleColor:[UIColor
    colorWithRed:153/255.0
    green:153/255.0
    blue:153/255.0 alpha:1.0] forState:UIControlStateNormal];

[_button setTitleColor:[UIColor
    colorWithRed:81/255.0
    green:19/255.0
    blue:137/255.0 alpha:1.0] forState:UIControlStateSelected];

[_button setBackgroundImage:
    [UIImage imageNamed:@"06_setting_category_tab_n"]
    forState:UIControlStateNormal];

[_button setBackgroundImage:
    [UIImage imageNamed:@"06_setting_category_tab_s"]
    forState:UIControlStateSelected];

[_button addTarget:self
    action:@selector(_buttonAction:)
    forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:_button];


?

  1. [ios] Xcode를 사용해서 Static Library 만들기 (시뮬레이터 + 디바이스)

  2. [ios] Thread Loop 내에서 UI 업데이트 방법

  3. [ios] UIView 계층구조

  4. [ios] UIWebView를 이용한 로컬 HTML 파일 표시

  5. [android] 안드로이드 동영상 스트리밍 예제

  6. [java] netty (비동기 이벤트 방식 네트워크 프레임워크) 사용법 #2 (client)

  7. [java] netty (비동기 이벤트 방식 네트워크 프레임워크) 사용법 #1 (server)

  8. ZBar 라이브러리를 이용한 바코드 스캔 앱 개발하기

  9. [ios] 비동기 블럭 코드 예제

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

  11. [android] 가속도 센서를 이용한 흔듦(Shake) 감지

  12. [web] 더 빠른 웹을 위한 프로토콜, 'HTTP/2'

Board Pagination Prev 1 ... 9 10 11 12 13 14 15 16 17 18 ... 71 Next
/ 71