gpt4 book ai didi

iphone - NSInvalidArgumentException与UITableView吗?

转载 作者:行者123 更新时间:2023-12-02 11:05:29 24 4
gpt4 key购买 nike

我正在为类制作一些信息指南。我需要使用UITableView,少了一些看起来像废话的东西,所以我已经做了大约一个星期。

我收到的错误是以下代码中的NSInvalidArgumentException:

- (NSInteger)numberOfRowsInSection:(NSInteger)section{
/*NSDictionary *dict = [_allPerks objectAtIndex:section];
NSArray *temp = [dict objectForKey:@"Perks"];
return [temp count];*/
if (section == 0)
return 9;
else if (section ==1)
return 7;
else if (section ==2)
return 11;
else if (section == 3)
return 11;
else if (section == 4)
return 8;
else
return 0;

}

至少,我认为它在那里。该错误表明我的问题出在该函数中,有关此消息的发件人无效。被注释的代码是我的第二次尝试,但没有成功。

这也是一个分组表,以防万一。我正在使用一个数组数组来实现这一点,因为我需要组织很多元素。如果需要这样做的代码,请这样说。

最佳答案

试试这个代码

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

if (section == 0){
return 9;
}
else if (section ==1){
return 7;
}
else if (section ==2){
return 11;
}
else if (section == 3){
return 11;
}
else if (section == 4){
return 8;
}
else{
return 0;
}
}

关于iphone - NSInvalidArgumentException与UITableView吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15395512/

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