gpt4 book ai didi

objective-c - UIPicker 不会设置文本字段

转载 作者:行者123 更新时间:2023-11-29 04:43:08 25 4
gpt4 key购买 nike

我有一个带有国家/地区列表和相应标志的自定义选择器,一切正常,但我希望当选择国家/地区时显示国家/地区名称和标志作为背景图片,我不明白为什么我的方法无法设置文本一段文字对我来说毫无意义。这是我的代码:注意我的“国家”NSSTring 在接口(interface)中正确声明并在 .m 中合成和 namefieldText IBOutlet 已连接。代码:

- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
// report the selection to the UI label

country = [customPickerArray objectAtIndex:[pickerView selectedRowInComponent:0]];

nameFiled.text =country; // Nothing happens here

NSLog(@"%@",country); //NSLog show correctly selected country in a console
}

最佳答案

问题出在您的:

国家= [customPickerArray objectAtIndex:[pickerView selectedRowInComponent:0]];

相反,你应该说:

国家/地区 = [customPickerArray objectAtIndex:row];

祝你好运!

关于objective-c - UIPicker 不会设置文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10061361/

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