gpt4 book ai didi

ios - UIPickerView NSInvalidArgumentException',原因: '-[__NSCFString superview]: unrecognized selector sent to instance

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

我是 Objective C 和 Xcode 的新手,正在尝试一步一步地学习。几天来我一直在为一个特定问题摸不着头脑,很难找到解决方案。我正在制作一个 UIPickerVIew 应用程序,它使用字典来填充选择器。 arrayStates 是进入左侧组件的州,arrayCities 是处于该州的城市,其中是 State 的键。城市进入正确的组成部分。我认为问题已经缩小到一个代码块。当我用它崩溃的值填充选择器时。我可以注释掉这段代码,它会运行得很好(只有问号作为选择器中的文本)。我收到此错误:

NSInvalidArgumentException', reason: '-[__NSCFString superview]: unrecognized selector sent to instance

这是我的 .m 文件中导致错误的代码块:

-(UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:    (NSInteger)component reusingView:(UIView *)view {

if (component == 0) {
return [arrayStates objectAtIndex:row];
}
else {
UILabel *lblCity=[[UILabel alloc] initWithFrame:CGRectMake(5,0,220,50)];
lblCity.text= [arrayCities objectAtIndex:row];
lblCity.backgroundColor = [UIColor clearColor];
lblCity.font = [UIFont boldSystemFontOfSize:18];
return lblCity;
}

}

下面是我更改的代码,它运行得很好!感谢您快速准确的回复!!

-(NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component

{

if (component == 0)
{
return [arrayStates objectAtIndex:row];
}
else
{
return [arrayCities objectAtIndex:row];
}

}

最佳答案

您收到此错误,因为如果组件为 0,您将返回一个字符串。您可能想使用 pickerView:titleForRow:forComponent: 而不是 viewForRow,并且只从数组中返回字符串,而不是使城市的标签。

关于ios - UIPickerView NSInvalidArgumentException',原因: '-[__NSCFString superview]: unrecognized selector sent to instance,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15303020/

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