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
번호 분류 제목 글쓴이 날짜 조회 수
709 Develop [c] 함수 요약 (검색해서 쓰세요..) hooni 2003.04.23 11813
708 Develop [c++] 데이터 압축 프로그램 소스 (lzw) file hooni 2013.04.23 11805
707 System/OS [mysql] 시간 관련 SQL구문.. hooni 2013.04.23 11683
706 Develop [js] 자바스크립트로 응용프로그램 실행 ㅎㅎ hooni 2003.04.23 11675
705 Develop [js] 이벤트 전파 3단계 hooni 2013.12.18 11671
704 Develop [js] 순환참조에 의한 메모리 누수 관련 file hooni 2013.12.17 11664
703 Develop [c] 프로세스 검사하기 hooni 2013.04.23 11660
702 System/OS [router] 라우팅 프로토콜 BGP (간단한 세팅) hooni 2013.04.23 11647
701 Develop [php] 날짜 정보 출력 (년,월,일,시,분,초) hooni 2013.04.23 11615
700 Develop [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Swift) file hooni 2016.03.23 11606
699 Develop [js] jQuery plugin 요약 hooni 2013.12.20 11585
698 Develop [c] pcap을 이용한 패킷 분석 ㅎㅎ hooni 2003.04.23 11570
Board Pagination Prev 1 ... 35 36 37 38 39 40 41 42 43 44 ... 99 Next
/ 99