我正在使用带有搜索栏和范围栏的TableView。 我在窗口右侧添加了部分索引。
myTableView.tableHeaderView = searchBar;
searchBar.delegate = self;
searchBar.showsCancelButton = YES;
searchBar.showsScopeBar = YES;
第一部分索引绘制在搜索栏和范围栏上方。
如何更改索引列的框架?
由于
梅西
答案 0 :(得分:0)
那么,tableView
的一行或两行是hiding behind your scope bar and search bar
。问题是你需要bind a tableView to your scopeBar
。那么它将在您的范围栏下面绑定tableView。
在您的代码中尝试这样:
//tableView is a table outlet name
//scopeBar is your scope bar outlet name
[tableView setTableHeaderView:scopeBar];
此代码会将您的tableView
与scope bar
绑定。然后表格视图行将not behind the scope bar
而不是show down to that bar
。