動的セルにロードする情報がそこにあることを正常に通知している nslog があります。ただし、viewDidLoad に犬の値があるにもかかわらず、name11Label の nslog が null を返すため、tableView がオブジェクト「犬」を含む配列「犬」をまったくロードしていないことがわかりました。tableView を開始するにはどうすればよいですか? (.hには、私の「tableView」用のioutletとプロパティ(念のため)があり、cell11.hのインポートと同様にあります)
.m ファイル
-(void)viewDidLoad{
...
self.tableview.delegate = self;
...
}
- (NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section {
if ( dogs != NULL ) {
return [dogs count];
}
return 0;
}
- (UITableViewCell *)tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)indexPath {
Cell11 *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell11"];
if (cell == nil)
{
cell = [[[Cell11 alloc] initWithFrame:CGRectZero reuseIdentifier:@"Cell11"] autorelease]; //I know that this method is depreciated, but it is not the source of this problem
}
NSDictionary *itemAtIndex =(NSDictionary *)[dogs objectAtIndex:indexPath.row];
cell.name11Label.text = [itemAtIndex objectForKey:@"dogs"];
NSLog(@"dogs array = %@", dogs); //returns correct information of the object dogs
NSLog(@"%@", cell.name11Label.text); //returning null even though "dogs" in viewDidLoad is showing a result;
return cell;
}
Cell11.h
#import <UIKit/UIKit.h>
@interface Cell11 : UITableViewCell
@property (nonatomic, strong) IBOutlet UILabel *name11Label;
@end
Cell11.m
#import "Cell11.h"
@implementation Cell11
@synthesize name11Label;
@end