我有 iphone 应用程序,我在其中输入任何数值,例如 10 2 0 1 0.2 等,如果用户输入任何文本,它应该提醒输入数字,而不是这个。
UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"Error" message:@"Value Must Be In Number " delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];