Contents

Develop
2014.01.09 14:19

[ios] UIButton multi-line iOS7

조회 수 11433 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
849 Develop [java] 채팅창 처럼2.. swing.. file hooni 2013.04.23 6421
848 Develop [doc] C언어 문법 설명서 file hooni 2013.04.23 6437
847 Develop [php] 정규표현식 간단히 정리 hooni 2013.04.23 6453
846 Develop [c] 메세지 프로그램 (Server - Agent - Client) file hooni 2013.04.23 6457
845 Develop [js] 윤동이가 만든 영어 학습(?) 프로그램 file hooni 2013.04.23 6462
844 Develop [c] 네트워크 보안 프로그래밍 과제 (Server,Agent,Client) file hooni 2013.04.23 6472
843 Develop [js] 새로고침(refresh)방법과 다른 페이지 바꾸기.. hooni 2003.04.23 6521
842 Develop [c] 민수형 소스(도메인소켓포함) file hooni 2013.04.23 6522
841 Develop [c] 간단한 점 이동 샘플 소스코드 hooni 2013.04.23 6541
840 Develop [c] 웅지학원 NAT를 소스코드로.. file hooni 2013.04.23 6611
839 Develop [c++] 인라인 함수 설명과 예제.. file hooni 2013.04.23 6633
838 Develop [js] 스타크래프트(starcraft).. file hooni 2013.04.23 6640
Board Pagination Prev 1 ... 23 24 25 26 27 28 29 30 31 32 ... 98 Next
/ 98