Adding UITableView Delegate to my ViewController Causing an Incomplete Implementation Error
#import <UIKit/UIKit.h>
@interface MyClassViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
UITableView* _tableView;
}
- (id)initWithFrame:(CGRect)frame;
@property(nonatomic, retain)UITableView* tableView;
@end
and in my .m file
@implementation PopUpPlaylistViewController
@synthesize tableView = _tableView;
Use