keypad not working for textfield in uiactionsheet

烈酒焚心 提交于 2020-01-15 03:10:09

问题


i have added textfeld in uiactionsheet as


-(void)showAction {
 printf("getting action ready \n");
 UIActionSheet *asheet = [[UIActionSheet alloc] initWithTitle:@"New Sheet Name" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles: nil];
       [asheet showInView:self.view];  
       [asheet setFrame:CGRectMake(0, 70, 320,200)];
       UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(0, 100,200, 25)];
 textField.borderStyle= UITextBorderStyleRoundedRect;
 [textField becomeFirstResponder];
 [textField setKeyboardType:UIKeyboardTypeAlphabet];
 [textField setKeyboardAppearance:UIKeyboardAppearanceAlert];
 textField.text=@"test" ;
 textField.delegate=self;
 [asheet insertSubview:textField atIndex:0];
 [textField release];
 [asheet release];
}

but keypad is not working for this textfield however backspace is working. previously when i have been using ios 3 its workd fine but with ios 3.2 iphone simulator 4.0 does not accept any input from keypad


- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
 printf("\n textFieldShouldBeginEditing\n ");
 return YES;
}
this gets called


- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
 printf("shouldChangeCharactersInRange  %s ",[string UTF8String]);
 return YES;
}
however this delegate method gets called only for backspace.

回答1:


Just use this way it works for me

First set the the UITextFieldDelegate,UIActionSheetDelegate in your class .h file

#define TEXT_FIELD_TAG 9999

#define ACTION_SHEET_TAG 8888

-(IBAction)ForgotPassword:(id)sender{


     UIActionsheet  *actFollowUp = [[UIActionSheet alloc] initWithTitle:@"Please Enter Email"
                                                      delegate:self
                                                              cancelButtonTitle:@"Cancel"
                                                                      destructiveButtonTitle:@"OK"
                                                              otherButtonTitles:nil];

actFollowUp.tag=ACTION_SHEET_TAG;

textFieldTime = [[UITextField alloc] initWithFrame:CGRectMake(60.f,320.f, 200.f, 30.f)];
[textFieldTime setBackgroundColor:[UIColor whiteColor]];
textFieldTime.delegate= self;
[textFieldTime setKeyboardType:UIKeyboardTypeAlphabet];
textFieldTime.keyboardAppearance= UIKeyboardAppearanceAlert;
textFieldTime.tag=TEXT_FIELD_TAG;

[actFollowUp addSubview:textFieldTime];

UIWindow*   appWindow = [UIApplication sharedApplication].keyWindow;

[actFollowUp showInView:appWindow];
[actFollowUp setFrame:CGRectMake(0.0,200.0, 320.0, 200.0)];

[self performSelector: @selector(acceptInput:) withObject: actFollowUp];

}

 -(void)acceptInput: (UIActionSheet*)actionSheet
{

 UITextField*    textField = (UITextField*)[actionSheet viewWithTag:TEXT_FIELD_TAG];

UIWindow*       appWindow = [UIApplication sharedApplication].keyWindow;

CGRect          frame     = textField.frame;

[appWindow insertSubview:textField aboveSubview:actionSheet];

frame.origin.y += 60.0; // move text field to same position as on action sheet

textField.frame = frame;

}


来源:https://stackoverflow.com/questions/4367494/keypad-not-working-for-textfield-in-uiactionsheet

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!