如何在 UIPickerView 中为两个不同的组件显示两种不同的对象类型?
Posted
技术标签:
【中文标题】如何在 UIPickerView 中为两个不同的组件显示两种不同的对象类型?【英文标题】:How do I show two different object types in UIPickerView for two different components? 【发布时间】:2013-03-14 01:08:57 【问题描述】:我有一个包含两个组件的选择器。在组件 0 (kCardComponent) 中,我希望 NSStrings 出现。在组件 1 (kSuitComponent) 中,我想要 UIView。这是我的选择器视图中的代码。程序崩溃了,我假设是因为它应该在这个方法中返回一个 UIView 时返回一个 NSString
- (UIView *)pickerView:(UIPickerView *)pickerView
viewForRow:(NSInteger)row
forComponent:(NSInteger)component reusingView:(UIView *)view
if (component == kSuitComponent)
UIImage *image = self.suitImages[row];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
return imageView;
else
return (UIView*)self.cardNumber[row];
我已尝试创建另一个选择器视图 -(NSString*)pickerView,但这不起作用。我该怎么办?
【问题讨论】:
没有得到你的确切信息。请详细解释你的问题。 【参考方案1】:您不能从此委托方法返回字符串,只能返回视图。由于您需要一个组件的视图,因此您需要一个所有组件的视图。您需要做的是创建一个UILabel
并将其文本设置为您拥有的字符串。
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
if (component == kSuitComponent)
UIImage *image = self.suitImages[row];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
return imageView;
else
NSString *text = self.cardNumber[row];
UILabel *label = ... // create label
label.text = text;
return label;
【讨论】:
以上是关于如何在 UIPickerView 中为两个不同的组件显示两种不同的对象类型?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 swift 中为 UIPickerview 的 2 组件数组添加新元素
如何在 UIPickerview iOS swift 中为组件赋予标题
UIAlertController 中不同的 UIPickerView Delegate/DataSource
如何在 Spring sec 中为组使用属性:hasAnyRole 的授权标签