본문 바로가기
iOS/iOS

UISegmentedControl

by 패쓰킴 2022. 10. 19.
728x90

선택 상태에 따라 세그타이틀 컬러 변경

- (IBAction)segmentedControlTap:(UISegmentedControl *)sender {
    NSDictionary *select = @{NSForegroundColorAttributeName: UIColor.redColor};
    NSDictionary *normal = @{NSForegroundColorAttributeName: UIcolor.blackColor};
    [sender setTitleTextAttributes:normal forState:UIControlStateNormal];
    [sender setTitleTextAttributes:select forState:UIControlStateSelected];
}

 

728x90

'iOS > iOS' 카테고리의 다른 글

navigation stack에서 특정 VC 삭제  (0) 2022.11.02
UIScrollView  (0) 2022.11.01
UITabBar  (0) 2022.10.19
UIscrollView dynamic height  (0) 2022.10.14
특정 viewcontroller로 pop  (0) 2022.10.13

댓글