TextFieldShouldReturn 未被调用
Posted
技术标签:
【中文标题】TextFieldShouldReturn 未被调用【英文标题】:TextFieldShoudReturn not being called 【发布时间】:2013-07-15 17:30:34 【问题描述】:我怎样才能让这个方法中的textfield调用textfieldshouldreturn? 我猜它不起作用,因为 UIView 没有委托属性,但我不确定如何使我在方法中创建的 UIView 符合协议。 我看过几篇关于委派的帖子,但我尝试过的一切都没有奏效。 我敢肯定它很简单。 提前致谢。
- (void) launchCreateNewListActionSheet
self.listActionSheet= [[UIActionSheet alloc] initWithTitle:@"Create A New List"
delegate:self
cancelButtonTitle:nil
destructiveButtonTitle:nil
otherButtonTitles:nil];
UIView *addToNewList = [[UIView alloc] initWithFrame:CGRectMake(0, 44, 320, 464)];
addToNewList.backgroundColor = [UIColor whiteColor];
UILabel *addToNewListLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 23, 100, 20)];
addToNewListLabel.text = @"List Name: ";
UITextField *enterNewListName = [[UITextField alloc] initWithFrame:CGRectMake(100, 20, 180, 30)];
enterNewListName.layer.borderWidth = 1;
enterNewListName.layer.borderColor = [[UIColor blackColor] CGColor];
enterNewListName.delegate = self;
[addToNewList addSubview:addToNewListLabel];
[addToNewList addSubview:enterNewListName];
UIBarButtonItem *doneBtn = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(addToExistingList)];
UIBarButtonItem *cancelBtn = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(cancelListPicker)];
UIBarButtonItem *fixedCenter = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
fixedCenter.width = 180.0f;
UIToolbar* toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
toolbar.barStyle = UIBarStyleBlackOpaque;
[toolbar sizeToFit];
[toolbar setItems:@[cancelBtn, fixedCenter, doneBtn] animated:YES];
[self.listActionSheet addSubview:toolbar];
[self.listActionSheet addSubview:addToNewList];
[self.listActionSheet showInView:self.view];
[self.listActionSheet setBounds:CGRectMake(0,0,320, 464)];
这是我的 .h 文件。我已经实现,因为它适用于其他方法中的文本字段。
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import "ZBarSDK.h"
#import "ProgressView.h"
@class ScannerViewController;
@protocol ScanViewDelegate <NSObject>;
@required
-(void)postURL:(NSURL*)url selectedAction:(NSString*)action;
@end
@interface ScannerViewController : UIViewController <ZBarReaderViewDelegate, UITableViewDelegate, UITableViewDataSource, UITextFieldDelegate, UIWebViewDelegate, UIPickerViewDelegate, UIActionSheetDelegate>
id <ScanViewDelegate> delegate;
@property (weak, nonatomic) IBOutlet ZBarReaderView *readerView;
@property (weak, nonatomic) IBOutlet UITableView *scannerList;
@property (retain) id delegate;
@property (strong) NSMutableArray* barCodeArray;
@property (strong) NSMutableArray* quantityArray;
@property (strong) NSURL* url;
@property (strong) NSString* action;
@property NSString *listItems;
@property NSString *listItemNames;
@property NSArray *listItemNamesArray;
@property NSArray *hrefArray;
@property int pickerViewRow;
@property (strong) UIWebView *webView;
@property (strong) ProgressView* loading;
@property BOOL isLoading;
@property (strong) UITextField *enterNewListName;
@property (strong) UITextField *addToNewListDescription;
@property (strong) NSMutableArray *textFieldArray;
-(IBAction)sendToCart:(id)sender;
-(IBAction)sendToList:(id)sender;
-(void)startLoadingURL;
@end
这里是 textfieldshouldreturn 方法:
-(BOOL)textFieldShouldReturn:(UITextField *)textField
if([self.textFieldArray containsObject:textField])
NSUInteger index = [self.textFieldArray indexOfObject:textField];
NSNumber *newQuantity = [NSNumber numberWithInteger:[textField.text integerValue]];
[self.quantityArray replaceObjectAtIndex:index withObject:newQuantity];
NSLog(@"Your new quantity is: %@", newQuantity);
[textField resignFirstResponder];
return YES;
【问题讨论】:
您是否使用断点查看 TextFieldShoudReturn 方法是否没有被调用? 它的 NSlog 来检查它是否被调用,而不是。 您可以将 TextFieldShoudReturn 方法编辑到您的问题中吗? 编辑显示.h文件和textfieldshouldreturn方法 而不是 [textField resignFirstResponder];返回是; 【参考方案1】:这里的关键点是 Andres 想在 UIActionSheet 上使用 UiTextField。 UIActionSheet 有一点点不同的吃水龙头的行为,实际上它阻止了对添加到操作表的 UiTextField 的健康使用。
请参阅此 SO 答案,发现使用自定义解决方案更好: keyboard in UIActionSheet does not type anything
基本上,最好将 UIAlertView 用于模态文本输入视图表单 (please see this link) 一种模仿 UIActionSheet 的自定义视图,具有更多自定义空间(搜索例如github as a starting point)但有一个UIActionSheet 的解决方案。
为了将 UITextField 放置在 UIActionSheet 不钢推的视图层次结构中,在显示 UIActionSheet 后使用此代码 sn-p:
[self.listActionSheet addSubview:toolbar];
// [self.listActionSheet addSubview:addToNewList]; // please comment-delete this line
[self.listActionSheet showInView:self.view];
[self.listActionSheet setBounds:CGRectMake(0,0,320, 464)];
// this is the 2 new lines below
UIWindow *appWindow = [UIApplication sharedApplication].keyWindow;
[appWindow insertSubview:addToNewList aboveSubview:listActionSheet]; // you add custom view here
【讨论】:
所以 - 海报问题 - 代码是否生成一个 UITextField 实际接受选择/成为第一响应者。如果不是,那么它不会向其委托发送任何消息也就不足为奇了。可以原创发帖人评论。 嗯...这可能是问题所在。那么你的意思是我的 enterNewListName.becomeFirstResponder = YES 吗?不,我没有那样做。我刚试了一下,它告诉我没有 setBecomeFirstResponder 的 setter 方法来分配给属性。 我现在尝试了您的代码并找到了解决方案。要将您的 texfield 放置在视图层次结构中以强制 uiactionsheet 不窃取推送,您必须在显示 uialerview 之后执行此操作: UIWindow *appWindow = [UIApplication sharedApplication].keyWindow; [appWindow insertSubview:addToNewList aboveSubview:listActionSheet]; 我会更新我的答案..它对我有用,但我必须修改alerview的框架才能看到文本字段(键盘在模拟器中为我隐藏) 是的,当我调整操作表的大小时,我注意到键盘被隐藏了。【参考方案2】:您是否启用了相应的类以与UITextFieldDelegate
兼容?
请转到当前类的 .h 文件,并使其与 UITextFieldDelegate 兼容。
例如:如果你的 ClassName 是 HomeController
我假设您收到类似于以下内容的警告:
Assigning to id<UITextFieldDelegate> from incompatible type "HomeController"
解决方案:
@interface HomeController : UIViewController <UITextFieldDelegate>
// YOur Class Variable.
@end
【讨论】:
【参考方案3】:您的 UIView 不需要委托属性。它只需要实现UITextField delegate methods。它们都是可选的,所以如果你不实现它们,编译器不会抱怨。
您的代码看起来不错。但是要查看是否正确连接了您的 UIView 子类中的 textFieldDidBeginEditing:
以生成日志并查看当您选择文本字段时是否出现日志。
- (void)textFieldDidBeginEditing:(UITextField *)textField
NSLog(@"textFieldDidBeginEditing: %@ (delegate: %@)", textField, [textField delegate]);
如果一切正常,则登录 textFieldShouldReturn: 等。如果这不起作用,则说明其他地方出了问题。您发布的代码乍一看还不错。
【讨论】:
【参考方案4】:首先,如果您的类不符合具有所需方法的协议,它将在将委托设置为类的行处生成警告。
Nwo,如果您想让自定义类成为 UITextField 的委托,您必须声明它并实现所需的方法。在您的情况下,您必须执行以下操作:
在 YourCustomView.h
@interface YourCustomView : UIView (or other class) <UITextFieldDelegate> // this will show that this class conforms to UITextFieldDelegate protocol
//other methods or properties here
@end
在 YourCustomView.m
@implementation YourCustomView
-(void)launchCreateNewListActionSheet
//some code here
UITextField *textField = //alloc init methd
textField.delegate = self;
#pragma mark - UITextFieldDelegate //this is optional only if you want to structure the code
- (BOOL)textFieldShouldReturn:(UITextField *)textField
//method called when the text field resign first responder
//您可以根据需要添加更多委托方法。 @结束
【讨论】:
UITextField 委托协议中的所有方法都是可选的,因此您不会收到编译器投诉。 @Obliquely true,谢谢,我编辑了答案。 (速度是原因)以上是关于TextFieldShouldReturn 未被调用的主要内容,如果未能解决你的问题,请参考以下文章
从 UIBarButtonItem 触发 textFieldShouldReturn
textFieldShouldReturn - completionHandler 中的某些方法永远不会被调用
在 iOS 中未调用 textFieldShouldReturn