是否可以将 NSMutableArray 的值(而不是计数)作为部分中的行数返回
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSLog(@"number of rows in section: %@",[arrayofNombre objectAtIndex:section]);//it prints the right value
return [arrayofNombre objectAtIndex:section];
}
应用程序崩溃了,当我输入一个常量值(例如返回 2)时,应用程序运行但它没有给出预期的结果。我肯定错过了一些东西。感谢您的帮助。