gpt4 book ai didi

iphone - numberofRowsinSection 可以返回 NSMutableArray 的值吗?

转载 作者:行者123 更新时间:2023-11-28 18:11:57 25 4
gpt4 key购买 nike

是否可以返回 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)时,应用程序运行但没有给出预期的结果。我肯定错过了什么。感谢您的帮助。

最佳答案

看起来您正在返回一个 NSNumber,而该方法需要一个 NSInteger。您应该按如下方式转换 NSNumber。

- (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] intValue];
}

关于iphone - numberofRowsinSection 可以返回 NSMutableArray 的值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16427707/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com