我有一个使用故事板从 UITableView 子类化的类,但我想根据所附图像定制 tableview。任何想法我怎样才能实现它?
谢谢你的帮助。
我有一个使用故事板从 UITableView 子类化的类,但我想根据所附图像定制 tableview。任何想法我怎样才能实现它?
谢谢你的帮助。
您也可以将 UILabel 添加到 UIView,然后只需将该 UIView 添加为 UITableView 的子视图。在 CGRectMake() 期间添加 UIView 时,只需传入负 Y 坐标;
然后你应该设置好,表头会随着 UITableView 滚动。
// for table header that scrolls with the table
[myTableView addSubview:tableHeaderView];
如果您不希望表格标题与表格一起滚动,那么您可以将 UIView 添加为视图控制器视图的子视图,而不是将 UIView 添加到 UITableView,即与 UITableView 处于同一级别:
// for non scrolling table header
[self.view addSubview:myTableView];
[self.view addSubview:tableHeaderView];