我正在尝试创建一个单位转换器应用程序,但不确定要实施哪个命令以进一步进行。下面的代码将在按数字键盘中的返回键或点击屏幕上的任意位置时返回主屏幕。
- (IBAction)textFieldReturn:(id)sender
{
[sender resignFirstResponder];
[self selectButton:nil];
}
- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch* touch= [[event allTouches]anyObject];
if ([_distance isFirstResponder] && [touch view] != _distance)
{
[_distance resignFirstResponder];
}
[super touchesBegan:touches withEvent:event];
}
这段代码将打开一个选择器视图:
- (IBAction)selectButton:(id)sender
{
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
pickerViewContainer.frame=CGRectMake(0, 200, 320, 261);
[UIView commitAnimations];
pickerViewContainer.hidden=NO;
}
按回车键或点击屏幕上的任意位置时,如何打开选择器视图?请协助。