我目前正在为iPhone开发应用程序。有一个屏幕要求用户以文本格式输入数据,但只需单击“提交”按钮即可轻松跳过。有没有办法让我们需要这些文本字段?
答案 0 :(得分:2)
您是否尝试取消激活按钮,除非文本字段中包含某些内容?
答案 1 :(得分:0)
你可以告诉按钮进程注意文本字段,这样如果文本字段为空,按钮就不会处理这个函数就像这样
-(IBAction) buttonPressed:(id) sender
{
//----this will process the button function if the textfield is not empty
if(textField.text != @"")
{
>>> do the process <<<
}
else
//----this will show an alert message when the user tries to click button without filling the textfield
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"error"
message:@"please fill the information first"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
[alert release];
}
}