taiyang2014

UISegmentedControl 改变选中字体的颜色

       //设置选中的字体颜色为蓝色
    [segmentControll setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor blueColor]} forState:UIControlStateSelected];
        //设置未选中的字体颜色为白色
    [segmentControll setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor]} forState:UIControlStateNormal];

 
 

posted on 2015-01-12 18:10  taiyang2014  阅读(514)  评论(0编辑  收藏  举报

导航