码迷,mamicode.com
首页 > 移动开发 > 详细

iOS UITableView表格索引

时间:2016-10-15 07:43:45      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:ios

 if ([myTableView respondsToSelector:@selector(setSectionIndexColor:)]) {
        myTableView.sectionIndexColor = [UIColor redColor];
        myTableView.sectionIndexBackgroundColor = [UIColor yellowColor];
    }
for(UIView *view in [tableView subviews]) {
        
        if([[[view class] description] isEqualToString:@"UITableViewIndex"])
        {
            [view setBackgroundColor:[UIColor redColor]];
            [view setTintColor:[UIColor redColor]];
        }
    }

UITableView修改右边索引的位置和颜色。


本文出自 “雪花飞落满人间” 博客,请务必保留此出处http://smengxiang.blog.51cto.com/11204872/1862102

iOS UITableView表格索引

标签:ios

原文地址:http://smengxiang.blog.51cto.com/11204872/1862102

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!