如何使用scrollview和viewcontroller自己创建tableViewController。我实际上尝试通过向scrollview和其他类似的东西添加可重用的视图。但我被卡住了。
请提供链接或想法,因为我是ios编程的新手。
答案 0 :(得分:0)
创建UIViewController
并在其视图中添加UITableView
作为子视图。使ViewController符合UITableViewDelegate
和UITableViewDataSource
协议,并将其设置为tableView的委托和dataSource。您可以将UITableViewCell
添加到tableView。
这是一个循序渐进的教程: https://www.journaldev.com/14180/ios-custom-tableview-images-checkmarks
的文档答案 1 :(得分:0)
Here is how I would approach it:
UIScrollViewDelegate
in your ViewController
func scrollViewDidScroll(_ scrollView: UIScrollView)
to call the method you created at step 3