我意识到这个问题已经被问过几次了,我已经按照答复了,但是对我来说不起作用。
我有一个UITableView
,. h文件中包含以下内容:
@interface ObViewControllerPreObsInfo : UIViewController < UITableViewDelegate, UITableViewDataSource>
并在viewDidLoad中设置
delegate
和dataSource
:[tableViewNames setDelegate: self];
[tableViewNames setDataSource: self];
但是当我尝试:
self.tableViewNames.frame.origin = 280;
我得到错误
表达式不可分配
有什么建议么?
最佳答案
您必须创建一个新框架,然后将其分配给视图。尝试这个:
CGRect frame = self.tableViewNames.frame;
frame.origin.x = 20;
frame.origin.y = 20;
self.tableViewNames.frame = frame;
关于ios - 以编程方式定位UITableView,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32170810/