Dopo aver analizzato i dati JSON in una classe Data, ho impostato la proprietà dei titoli NSArray * di UIViewController in un metodo fillArrays della stessa classe Data. Nel metodo viewDidAppear del mio UIViewController, chiamo reloadData sul mio UITableView. numberOfSectionsInTableView fa scattare e restituisce 1, quindi numberOfRowsInSection si attiva e restituisce un numero di array di 4 (per 4 stringhe nell'array). Tuttavia, il controllo non arriva mai a cellForRowAtIndexPath e sto avendo il tempo più difficile a capire perché, soprattutto perché ho sezioni e file validi. Le celle sono tutte visibili.cellForRowAtIndexPath non chiamato; sezioni restituisce 1 e restituisce righe 4
Ho aggiunto i protocolli UITableViewDataSource e UITableViewDelegate all'interfaccia UIViewController e ho impostato il delegato di UITableView e dataSource su self in viewDidLoad (che viene verificato anche dai metodi di conteggio di riga e sezione chiamati).
Mi chiedo se ha qualcosa con me per reinizializzare l'UIViewController in Data.m per impostare le sue proprietà.
In Data.m:
- (void)fillArrays:(NSArray *)jsonObjs {
NSLog(@"fillArrays");
HeadlinesRootViewController *hrvc = [[HeadlinesRootViewController alloc] init];
hrvc.headlines = [self getJsonValuesForKey:@"headline" inArrayOfObjects:jsonObjs];
[hrvc viewDidAppear:NO];
}
In ViewController.m:
- (void)viewDidLoad {
[super viewDidLoad];
NSLog(@"viewDidLoad");
// Table view
headlineTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 180, self.view.bounds.size.width, 300) style:UITableViewStylePlain];
[headlineTableView setDelegate:self];
[headlineTableView setDataSource:self];
// Temporary
self.headlines = [[NSMutableArray alloc] initWithObjects:@"headline1", @"headline2", @"headline3", @"headline4", nil];
[self.view addSubview:headlineTableView];
self.headlineTableView = headlineTableView;
[headlineTableView release];
}
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
NSLog(@"viewdidappear");
NSLog(@"headlines: %@", self.headlines); // Returns an array of 4 headlines
if([self.headlines count] != 0){
[self.headlineTableView reloadData];
}
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
NSLog(@"numberOfSectionsInTableView: 1");
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
NSLog(@"numberOfRowsInSection: %d", [self.headlines count]);
return [self.headlines count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@"cellForRowAtIndexPath");
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
cell.text = [[NSString alloc] initWithFormat:@"%@", [self.headlines objectAtIndex:indexPath.row]];
return cell;
}
Si potrebbe desiderare di postare qualche codice – coneybeare