我遇到的问题似乎无法深入人心。
在我的视图中加载了代码,我正在创建一个数组并尝试填充表。出于某种原因,它只会在应用程序运行的每个时间填充数据。
我将日志放入viewDidLoad中,该视图与viewWillAppear一样运行,并输出数组的正确计数。
此外,UITableView规范方法在它工作时被调用,并且它们在它不起作用时不会被调用。我无法弄清楚这个问题的根源。
这种情况再次恰好发生在50%的时间。没有可能绊倒的动态数据或任何东西。
#import "InfoViewController.h"
@implementation InfoViewController
- (void)viewDidLoad
{
NSLog(@"Info View Loaded"); // This runs
infoList = [[NSMutableArray alloc] init];
//Set The Data //Theres 8 similar lines
[infoList addObject :[[NSMutableDictionary alloc] initWithObjectsAndKeys: @"Scrubbed", @"name", @"scrubbed", @"url", nil]];
NSLog(@"%d", [infoList count]); // This shows the count correctly every time
[super viewDidLoad];
}
-(void) viewWillAppear:(BOOL)animated
{
NSLog(@"Info Will Appear"); // This Runs
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// This WILL NOT RUN when it doesnt work, and DOES show the count when it does run
NSLog(@"Counted in numberOfRowsInSection %d", [infoList count]);
return [infoList count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"ROW");
static NSString *CellIdentifier = @"infoCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.textLabel.text = [[infoList objectAtIndex:indexPath.row] objectForKey:@"name"];
return cell;
}
@end
答案 0 :(得分:0)
您需要在viewDidLoad的末尾调用tableView的reloadData方法。