UITextField inputview 属性出现问题,拉起自定义 UIPickerView

Posted

技术标签:

【中文标题】UITextField inputview 属性出现问题,拉起自定义 UIPickerView【英文标题】:Trouble with the UITextField inputview property pulling up a custom UIPickerView 【发布时间】:2012-06-10 04:27:49 【问题描述】:

我在从文本字段的 inputview 属性中提取自定义 UIPickerView 时遇到问题。我已经为此工作了一段时间,做了一些研究,并尝试根据 Apple 的 UICatalog 示例组合一个单独的项目。

但是,每当我在文本字段内点击时,我得到的只是一个黑屏,它会弹出来代替选择器视图。我确定我忽略了一些东西,但我一直在寻找几天的任何帮助。

请记住,这是我的测试项目,看看我是否可以将此功能添加到我的其他应用程序中,以及我尝试从 UICatalog 应用程序复制的大量代码。抱歉,如果有任何不合理的地方,请随时提出您可能遇到的任何问题。谢谢。

//  ViewController.h
//  TestPicker

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController<UITextFieldDelegate,UIPickerViewDelegate,UIPickerViewDataSource>

UIPickerView *picker;
     //The picker view the textfield responds to.

IBOutlet UITextField *myText;
     //The textfield which has the input view of a picker.

NSArray *testArray;
     //The array which values are loaded into the picker.


@end


//  ViewController.m
//  TestPicker


#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad

    picker.delegate=self;
    picker.dataSource=self;
    myText.delegate=self;

    [self createPicker];

    [super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.


- (void)viewDidUnload

    myText = nil;
    [super viewDidUnload];
    // Release any retained subviews of the main view.


- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

    if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) 
        return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
     
    else 
        return YES;
    


-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField
    picker = [[UIPickerView alloc] initWithFrame:CGRectZero];
    myText.inputView=picker;
    return YES;


-(void)textFieldDidBeginEditing:(UITextField *)textField




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

    NSString *returnStr = @"";

    if (pickerView == picker)
    
        if (component == 0)
        
            returnStr = [testArray objectAtIndex:row];
        
        else
        
            returnStr = [[NSNumber numberWithInt:row] stringValue];
        
    

    return returnStr;


- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component

    return [testArray count];


- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView

    return 1;



- (void)createPicker

    testArray = [NSArray arrayWithObjects:
                            @"John Appleseed", @"Chris Armstrong", @"Serena Auroux",
                            @"Susan Bean", @"Luis Becerra", @"Kate Bell", @"Alain Briere",
                        nil];


    picker = [[UIPickerView alloc] initWithFrame:CGRectZero];


    picker.showsSelectionIndicator = YES;   // note this is default to NO

    picker.delegate = self;
    picker.dataSource = self;



@end

【问题讨论】:

一个方便的子类来做到这一点:github.com/CullenSUN/PickerTextField 【参考方案1】:

问题出在这个方法上:

-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField
    picker = [[UIPickerView alloc] initWithFrame:CGRectZero];
    myText.inputView=picker;
    return YES;

您已经在 createPicker 方法中创建了选取器,从 viewDidLoad 调用,因此这会创建另一个实例(此实例不会将委托或数据源设置为 self,因为这些是在您创建的第一个实例上设置的)。如果你只是删除这个方法的第一行,它应该可以工作。

您的代码中还有另外两个 cmets。 viewDidLoad 方法中的前两行没有做任何事情,因为您还没有创建选择器——它们应该被删除。您还需要实现 pickerView:didSelectRow:inComponent: 方法,以便将选择器的选定值放入文本字​​段。

【讨论】:

以上是关于UITextField inputview 属性出现问题,拉起自定义 UIPickerView的主要内容,如果未能解决你的问题,请参考以下文章

UITextField inputview 弹出 UIPickerView 在pickerview中显示问号

Swift:使用 UIDatePicker 作为 UITextField inputView 不更新

动画一个 `inputView` 键盘转换

iOS:自定义 UITextField 的 inputView 大小

UIPickerView 作为多个 UITextField 的 inputView

UITableView 作为 UITextField didSelectRowAtIndexPath 的 inputView 随机未触发