- I pulled into a sequence controller table view.
-
I have created an outlet property for the table.
@ Property (strong, nonatomic) IBOutlet UITableView * tableView;
-
I rep interface is added
UITableViewDelegate
4. representatives with representatives:
tableView. Delegate = self;
And added to all the functions of a Teblwu, which usually had worked before:
- (NIsiteView) tableView: (UITableView *) table view Snkyaofrejh Insashn: (NSInteger) section - (UITableViewCell *) tableView :( UITableView *) tableView cellForRowAtIndexPath: (NSIndexPath *) directory path
and all other functions Is not being called initially.
What am I missing here?
You are losing table view data source
set tableView .dataSource = self;
as well, and you should be good to go.
Comments
Post a Comment