本文介绍了UITableView是否可调整大小?我可以分配一个不同的框架吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
UITableView是否可调整大小?我可以分配一个不同的框架吗?
Is UITableView resizable ? Can I assign a different frame ?
我正在UITableViewController中尝试此行,但是它不起作用(在iPhone上):
I'm trying this line in a UITableViewController but it doesn't work (on iPhone):
self.tableView.frame = CGRectMake(0, 0, 300, 200);
谢谢
推荐答案
不在UITableViewController中,因为在UITableViewController中是self.view == self.tableView
.
Not in a UITableViewController, because in a UITableViewController, self.view == self.tableView
.
尝试使用UIViewController,并根据需要实现UITableViewDataSource和UITableViewDelegate协议.
Try using a UIViewController, implementing the UITableViewDataSource and UITableViewDelegate protocols as necessary.
这篇关于UITableView是否可调整大小?我可以分配一个不同的框架吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!