In my app, I use a custom NIB to load my UITableViewCells. The NIB\'s File\'s Owner is set so the class is my View Controller. I then Link the UITableViewCell to the IBOutlet I
Found solution in dev forums
Create this files:
UITableViewCellContentView.h
#import
@interface UITableViewCellContentView : UIView {
}
@end
UITableViewCellContentView.m
#include "UITableViewCellContentView.h"
@implementation UITableViewCellContentView
+ (id)alloc {
return [UIView alloc];
}
+ (id)allocWithZone:(NSZone *)zone {
return [UIView allocWithZone:zone];
}
@end