Contents

Develop
2014.01.09 14:19

[ios] UIButton multi-line iOS7

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


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
363 Develop [c] KNN(K-nearest neighbor) 패턴인식 과제.. file hooni 2013.04.23 8557
362 Develop [c] 암호화 알고리즘 DES 구현 ㅋㅋ file hooni 2013.04.23 8556
361 Develop [c] 단기과정[01/07] 제어문, 피보나치수열 hooni 2003.04.23 8555
360 Develop [c] 도메인(호스트)으로 IP정보 알아오기.. (nslookup과 비슷) file hooni 2013.04.23 8553
359 Develop [chm] 윈도우즈에서 디버깅 기법(Debugging Applications) file hooni 2013.04.23 8549
358 Develop [jsp][php] LDAP 프로그래밍.. file hooni 2003.04.23 8536
357 Develop [c] 구조체 배열 예제 (학생 성적 계산) file hooni 2013.04.23 8534
356 Develop [php] 자바스크립트 개판 만들기.. file hooni 2013.04.23 8528
355 Develop [js] 네이버에서 그림 퍼올 때.. URL Encoding 관련ㅋㅋ hooni 2013.04.23 8522
354 Develop [c] 프로그래밍 과제..(colprint) file hooni 2003.04.23 8515
353 Develop [c] 간단한 순위 루틴.. (질문에 대한 답변) hooni 2003.04.23 8496
352 Develop [c] 스택/힙 오버플로우 테스트(overflow) file hooni 2003.04.23 8493
Board Pagination Prev 1 ... 36 37 38 39 40 41 42 43 44 45 ... 71 Next
/ 71