what is the project-setting to force code to compile undeclared methods?
This is an example of code that doesn’t compile.
UITableView *parentTable = (UITableView *)self.superview;
[parentTable reloadData];
if ([parentTable.delegate respondsToSelector:@selector(method)]) {
[parentTable.delegate method];
}
Try with this syntax: