iOS表视图,更改表索引的框架

时间:2012-04-30 15:21:03

标签: ios uitableview indexing

我正在使用带有搜索栏和范围栏的TableView。 我在窗口右侧添加了部分索引。

myTableView.tableHeaderView = searchBar;
searchBar.delegate = self;
searchBar.showsCancelButton = YES;
searchBar.showsScopeBar = YES;

第一部分索引绘制在搜索栏和范围栏上方。

如何更改索引列的框架?

由于

梅西

screenshot

1 个答案:

答案 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];

此代码会将您的tableViewscope bar绑定。然后表格视图行将not behind the scope bar而不是show down to that bar