I've converted an app I'm writing to ios 5 and then using the inbuilt tool I converted it to use Automatic Reference Counting. There were no problems with ios 5 but after ARC conversion most of my delegate calls don't seem to be working. For example I have a subclass of UITableViewController with a .h file that looks like:
@interface UITableVCSubclass : UITableViewController <UITableViewDelegate, ... >
...
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
...
@end
The Table View Delegate method tableView:didSelectRowAtIndexPath: no longer gets called when I select a row of the table. If checked that self.tableview.delegate == self, which it does. Any ideas why this has stopped working?