2011-12-08 2 views
9

가능한 중복은 :
UISegmentedControl selected segment color
UISegmentcontrol appearances causing issuesUISegmentcontrol 글꼴 및 선택한 세그먼트 색상을 변경하는 방법은 무엇입니까?

안녕 난 사용자 정의 글꼴을 기본 UISegmentControl 글꼴을 변경하고 어두운 대신에 다른 색으로 선택된 세그먼트의 색상을 변경하려면합니다 색깔.

덕분에이

enter image description here

편집이

enter image description here

에서

: 전화 솔루션

// 변경 글꼴 크기, 그림자를 제거, 선택한 텍스트 & 배경 색상이 정상 상태에서 다른

-(void)defineSegmentControlStyle 
    { 
     //normal segment 
     NSDictionary *normalAttributes = [NSDictionary dictionaryWithObjectsAndKeys: 
            [UIFont fontWithName:@"Rok" size:20.0],UITextAttributeFont, 
            [UIColor colorWithRed:75.0/255.0 green:75.0/255.0 blue:75.0/255.0 alpha:1.0], UITextAttributeTextColor, 
            [UIColor clearColor], UITextAttributeTextShadowColor, 
            [NSValue valueWithUIOffset:UIOffsetMake(0, 1)], UITextAttributeTextShadowOffset, 
            nil];//[NSDictionary dictionaryWithObject: [UIColor redColor]forKey:UITextAttributeTextColor]; 
     [infoSegment setTitleTextAttributes:normalAttributes forState:UIControlStateNormal]; 

     NSDictionary *selectedAttributes = [NSDictionary dictionaryWithObjectsAndKeys: 
              [UIFont fontWithName:@"Rok" size:20.0],UITextAttributeFont, 
              [UIColor whiteColor], UITextAttributeTextColor, 
              [UIColor clearColor], UITextAttributeTextShadowColor, 
              [NSValue valueWithUIOffset:UIOffsetMake(0, 1)], UITextAttributeTextShadowOffset, 
              nil] ;//[NSDictionary dictionaryWithObject: [UIColor redColor]forKey:UITextAttributeTextColor]; 
     [infoSegment setTitleTextAttributes:selectedAttributes forState:UIControlStateSelected]; 

    } 
+0

http://stackoverflow.com/a/5932524/102937 –

답변

1

당신은 체크 아웃 할 수도 있습니다 : http://idevrecipes.com/2010/12/11/custom-segmented-controls/

+0

답장을 보내 주셔서 감사합니다,하지만 난 너무 사용자 정의 글꼴을 설정할 필요가 보았다 ... – Desmond

+0

어쩌면이? http://www.iphonedevsdk.com/forum/iphone-sdk-development/5059-change-font-size-text-uisegmentedcontrol.html –

+0

UISegmentedControl에서 선택되지 않은 것과 다른 선택된 세그먼트의 글꼴 크기를 변경할 수 있습니까? 선택한 세그먼트의 색상은 변경할 수 있지만 글꼴 크기는 변경할 수 없습니다. – Shreyas

관련 문제