有人可以告诉我在代码中缺少什么,因为它没有在表格视图中显示任何内容。此外,我已经在代码中设置了委托和数据源,以及 UITableView 视图出口。
。H
@interface FoodViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
{
NSMutableArray *objects;
}
@property (strong, nonatomic) IBOutlet UITableView *tablewviewFood;
@property (strong, nonatomic) NSMutableArray *objects;
@end
.m
- (void)viewDidLoad
{
[super viewDidLoad];
objects =[[NSMutableArray alloc] initWithObjects:@"Employee Services",@"Human Resources",@"Organization",@"Policies",@"Reference",nil];
_tablewviewFood.dataSource = self;
_tablewviewFood.delegate = self;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [_objects count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Celler";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
cell.textLabel.text = [_objects objectAtIndex:indexPath.row];
return cell;