我终于设法清理了足够的屏幕来激活旧项目的自动布局。哇噢!
我有UITableView
有一个xib(只有一个xib - 没有h / m文件)作为tableFooterView
。
我添加了一些约束(我将要描述的问题发生在约束之前和之后 - 它们没有改变任何东西)。
xib编辑器的代码片段:
代码是:
self.tableView.tableFooterView = [[[NSBundle mainBundle] loadNibNamed:@"addCommentView" owner:self options:nil] objectAtIndex:0];
commentTextField = (UITextField *)[self.tableView.tableFooterView viewWithTag:1];
commentTextField.delegate = self;
UIButton *sendButton = (UIButton *)[self.tableView.tableFooterView viewWithTag:2];
[sendButton addTarget:self action:@selector(doSendComment:) forControlEvents:UIControlEventTouchUpInside];
我看到的是这个 - 视图的灰色背景和textField不可编辑。
它在自动布局故事板之前起作用了......
欣赏一些想法在哪里寻找问题......