Here is my current code. I have not even gotten past the viewDidLoad
method override because on the line where it says super viewdidload
it throws the error @interface
for uitableview
declares for the selector viewdidload
.
I am not too familiar with iPhone development and i am still beginning. Can someone please help me with this
my code
@interface myUITVC : UITableViewController UITableViewDelegate, UITableViewDataSource>
@property (nonatomic, strong) NSMutableArray *array;
@end
@implementation myUITVC
-(void)viewDidLoad
{
[super viewDidLoad];
}
@end