【发布时间】:2014-09-17 17:54:58
【问题描述】:
在我的一个场景中,我在视图中有一个表格视图(和另一个视图)。由于我的表视图不是外部视图,我不能使用 UITableViewController 来处理表视图。我将如何管理表格视图?
感谢您的帮助!
包含表格的视图的当前视图控制器:
class CViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
【问题讨论】:
标签: uitableview layout ios7 uiviewcontroller