after upgrading to iOS 9 (worked fine in iOS 8), I am having trouble clicking UIBUttons and editing UITextFields inside custom UITableViewCells.
I have an UITableView with custom UITableViewCells. These cells are loaded like this:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
...
controller=[[PresetRowViewController alloc] initWithNibName:@"PresetRowViewController" bundle:nil];
...
return (UITableViewCell *)controller.view;
}
The cells show fine, but I cannot click in any UIButton or edit any UITextField inside them.
Any ideas?
Thanks