私はUITableView
入りUIViewController
、コンセントを介して接続し、デリゲートとデータソースが自己に割り当てられました。numberOfSectionsInTableView
をnumberOfRowsInSection
使用して試しましたが、呼び出されてNSLog
いcellForRowAtIndexPath
ませんが、私のコードは次のようになります
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
NSLog(@" cellForRowAtIndexPath ");
static NSString *CellIdentifier = @"CurrencyCell";
CurrencyCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[CurrencyCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] ;
}
new *Obj = [appdelegate.array objectAtIndex:indexPath.row];
cell.CurNameLabel.text = Obj.C_Name;
cell.textLabel.text = @"sdfnhsdfndsio;";
NSLog(@"C_Name %@", Obj.C_Name);
return cell;
}
誰でも電話できますか?私は間違いを犯しています。よろしくお願いします