Customizing Section indexes in UITableView in iphone application

前端 未结 5 1609
忘掉有多难
忘掉有多难 2020-12-03 17:56
  • Does any one have tried to customize default section index displayed in UITableView.
  • I want to modify the appearance of UITableView SectionIndex.
  • Is
5条回答
  •  伪装坚强ぢ
    2020-12-03 18:21

    Swift version:

    tableView.sectionIndexBackgroundColor = UIColor.clearColor() //iOS7+
    tableView.sectionIndexTrackingBackgroundColor = UIColor.clearColor() //iOS6+
    tableView.sectionIndexColor = UIColor.redColor() //iOS6+
    

    To customize the index view height (UITableViewStylePlain style only):

    tableView.sectionIndexMinimumDisplayRowCount = 15
    

提交回复
热议问题