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. [js] 인터넷 주소(URL) 인코딩 ㅋㅋ

  2. [java] 날짜 계산 (Date, SimpleDateFormat)

  3. [java] 스트러츠(Struts) 세팅 ㅋㅋ

  4. [js] 파이어폭스(Firefox;F/F)에서 outerHTML 작동하도록 만든 메소드

  5. [link] iOS(아이폰) 개발 관련 ㅋㅋ

  6. [mac] OSX(맥) 단축키 설명 ㅎㅎ

  7. [android] ArrayAdapter 테스트 파일 ㅎㅎ

  8. [android] ArrayAdapter를 이용하여 출력하기

  9. [android] ListView+ArrayAdapter 테스트

  10. [mac] 맥(OSX)에서 root 패스워드 설정하기

  11. [mac] 맥에서 APM(apache,php,mysql) 구성하기

  12. [android] SurfaceView를 이용한 애니메이션 ㅎㅎ

Board Pagination Prev 1 ... 48 49 50 51 52 53 54 55 56 57 ... 98 Next
/ 98