gpt4 book ai didi

iphone - UIPickerView 和 UITextField 从 UIPickerView 获取值

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

好吧,我不知道如何处理这个问题。

我有一个 UITextField,我根据 XML 文件的定义将其动态添加到 UITableView,在 XML 文件中,我可以将列表指定为其中一种数据类型,然后我所做的是添加一个显示列出我的特定 UITextField 的 inputView。

我遇到的问题是弄清楚如何从 UIPickerView 中获取选定的值并将其添加到我的 UITextField 的文本属性中

我的 UIPickerView 是一个自定义类,但我没有添加额外的功能,我只是覆盖了它,以便可以将数据源作为属性传递给 UIPickerView。

这是我的 PickerViewDataSourceAndDelegate.h

#import <Foundation/Foundation.h>

@interface PickerViewDataSourceAndDelegate : UIPickerView <UIPickerViewDelegate, UIPickerViewDataSource>

@property (nonatomic, strong) NSMutableArray *pickerData;

@end

而且是.m文件

#import "PickerViewDataSourceAndDelegate.h"

@implementation PickerViewDataSourceAndDelegate

@synthesize pickerData;

-(id)init {
if (self = [super init])
{
self.pickerData = [[NSMutableArray alloc] init];
}
return self;
}

- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)thePickerView {

return 1;
}

- (NSInteger)pickerView:(UIPickerView *)thePickerView numberOfRowsInComponent:(NSInteger)component {
return [self.pickerData count];
}

- (NSString *)pickerView:(UIPickerView *)thePickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component {
return [self.pickerData objectAtIndex:row];
}

@end

这就是我添加 UITextField 和 UIPickerView 作为 inputView 的方式

    for(NodeProperty *nodeproperty in node.properties)
{
if(nodeproperty.flowDirection == (FlowDirection*)Output)
{
if([nodeproperty.typeName isEqualToString:@"System.String"] && nodeproperty.extendedType == (ExtendedType*)None && [nodeproperty.enumValues count] == 0)
{
...
}
else if([nodeproperty.typeName isEqualToString:@"System.String"] && nodeproperty.extendedType == (ExtendedType*)MultilineText && [nodeproperty.enumValues count] == 0)
{
...
}
else if([nodeproperty.typeName isEqualToString:@"System.Boolean"] && nodeproperty.extendedType == (ExtendedType*)None && [nodeproperty.enumValues count] == 0)
{
...
}
else if([nodeproperty.typeName isEqualToString:@"System.Double"] && nodeproperty.extendedType == (ExtendedType*)None && [nodeproperty.enumValues count] == 0)
{
...
}
else if([nodeproperty.typeName isEqualToString:@"System.String"] && nodeproperty.extendedType == (ExtendedType*)None && [nodeproperty.enumValues count] > 0)
{
UILabel *fieldLabel = [[UILabel alloc] initWithFrame:CGRectMake(5, 5, 290, 20)];
fieldLabel.text = nodeproperty.name;
[rowsInSectionLabels addObject:fieldLabel];

PickerViewDataSourceAndDelegate *pickerDataDel = [[PickerViewDataSourceAndDelegate alloc] init];

pickerDataDel.pickerData = nodeproperty.enumValues;
pickerDataDel.dataSource = pickerDataDel;
pickerDataDel.delegate = pickerDataDel;

UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(5, 25, 290, 30)];
[textField setBorderStyle:UITextBorderStyleRoundedRect];
textField.inputView = pickerDataDel;
[rowsInSection addObject:textField];
}
else
{
....

对于篇幅我省略了一些空格,如果有些地方不清楚我会很乐意解释。

一切都完美无缺,我只想从选择器中获取选定的值

最佳答案

参见 picker view delegate protocol .实现这个方法:

- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component

在这里,您可以从模型中获取适当的值并更新您的文本字段。

要确定哪个是当前文本字段,您需要找出哪个文本字段是第一响应者。

将所有文本字段放在 IBOutletCollection 或数组中,遍历它们并找到第一响应者。

或者,如果您有文本字段委托(delegate),则可以在 didBeginEditing 委托(delegate)方法中为当前文本字段设置一个 ivar,并在上面的选择器 View 委托(delegate)方法中使用它。

关于iphone - UIPickerView 和 UITextField 从 UIPickerView 获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9874037/

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