When I try to get a h file that inherits from UITableViewController to conform to NSCoding, I can't switch views.
- (id) initWithCoder:(NSCoder*) coder
{
[self init];
return self;
}
Inserting the above code into the m file is what causes the problem. Why is that?