无法从视图中填充表格



可能是一个渡轮简单(愚蠢)的问题,但我现在被困了几个小时。我在SO上搜索了很多项目,但我不知道我做错了什么。我最近开始为IOS开发。

我想做什么:我有一个实用程序应用程序,主视图中有一个表格。我试图用代码动态填充表格。

.h 文件

#import "FlipsideViewController.h"
@interface MainViewController : UIViewController <FlipsideViewControllerDelegate,   UITableViewDataSource,UITableViewDelegate>
{
    NSArray *JSONArray;
}
@property (nonatomic, weak) IBOutlet UITableView *tableview;
@property (nonatomic, retain) IBOutlet NSArray *JSONArray;
@property (nonatomic, retain) IBOutlet NSArray *dynamicTable;
@end

.m 文件

@interface MainViewController () {
    NSMutableArray *_objects;
}
@end
@implementation MainViewController
@synthesize JSONArray;
@synthesize tableview;
- (void)viewDidLoad
{
    [super viewDidLoad];
    self.tableview.delegate = self;
    if (!_objects) {
        _objects = [[NSMutableArray alloc] init];
    }
    [_objects insertObject:[NSDate date] atIndex:0];
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
    [self.tableview insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];  
    dispatch_async(dispatch_get_main_queue(), ^{
        [self.tableview reloadData];
    });
}

为了填充表格,我使用了默认的IOS示例(在帖子下方)

当我启动应用程序时,numberOfRowsInSection,cellForRowAtIndexPath等......无法加载。我做错了什么?

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
   return _objects.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:  (NSIndexPath *)indexPath
{
   UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
    NSDate *object = _objects[indexPath.row];
    cell.textLabel.text = [object description];
    return cell;
}
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    return YES;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:  (UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        [_objects removeObjectAtIndex:indexPath.row];
        [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
    } else if (editingStyle == UITableViewCellEditingStyleInsert) {
    }
}

您忘了将数据源委托放在 viewDidLoad 中:

[self.tableview setDataSource:self];

实际上,表视图有两个委托,一个用于处理数据,另一个用于处理与表视图的交互。

您忘记将类设置为数据源。尝试使用以下代码:

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.tableview.delegate = self;
    self.tableview.datasource = self;  // <-- You forgot this
    if (!_objects) {
        _objects = [[NSMutableArray alloc] init];
    }
    [_objects insertObject:[NSDate date] atIndex:0];
    [self.tableview reloadData];
}

最新更新