Swift 3管理标题的标题部分

时间:2016-09-16 10:57:09

标签: ios swift uitableview

我有一个viewController为

class MyController: UIViewController , UITableViewDelegate, UITableViewDataSource, UISearchBarDelegate 

我使用Storyboard设置dataSource和委托 在这个课程中我实现了这些方法:

  1. tableView titleForHeaderInSection
  2. tableView sectionForSectionIndexTitle
  3. sectionIndexTitles。
  4. 我想实现一个与联系人应用程序具有相同行为的应用。 但问题是部分标题似乎与列表分离,如果我滚动列表部分标题不滑...

    enter image description here

    任何帮助将不胜感激 感谢

1 个答案:

答案 0 :(得分:0)

是一个约束问题,我使用StackView解决了这个问题。我将SearchBar和UITableView放在StackView中,这样我得到垂直对齐。现在它的工作。 enter image description here