I have a UIView which contains a UITableView. The tableview\'s delegate is set to my UIView, but it never calls the delegate methods:
-(id)init {
self = [sup
I ran into the same issue once, what silly mistake I did was inside initWithCoder I called [super init]. TableView was in xib
-(id) initWithCoder:(NSCoder *)aDecoder
{
self = [super init]
}
Instead of
-(id) initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:aDecoder];
}
Just check if that's not the case