可能是渡轮容易(愚蠢)的问题,但我现在被困四个小时。我在SO上搜索了很多项目,但我不知道我做错了什么。 我最近开始为IOS开发。
我想做什么:我有一个Utility视图,在mainview中有一个表。我试图用代码动态填充表格。
.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) {
}
}
答案 0 :(得分: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];
}
答案 1 :(得分:2)
您忘记将数据源委托放在viewDidLoad中:
[self.tableview setDataSource:self];
实际上有一个TableView用于处理数据,另一个用于处理与表视图的交互。