0

可能是一个渡轮简单(愚蠢)的问题,但我现在被困了四个小时。我在 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) {

    }
}
4

2 回答 2

2

您忘记将类设置为数据源。试试这个代码:

- (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];
}
于 2013-10-23T10:05:24.910 回答
2

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

[self.tableview setDataSource:self];

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

于 2013-10-23T10:07:08.157 回答