我必须找到一种方法来检查(按一下按钮)文本字段中的文本是否存在于 xml 文件中。
我认为如果我将 xml 文件作为数组加载,那么我可以使用 for 循环来查看它是否与数组中的结果相同。
对于循环根本不实用,你能解释一下我如何为这类问题编写代码吗?
我希望如果整个数组中不存在该对象,则显示警报
谢谢
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
cose = [[NSArray alloc] initWithObjects:@"giovanni",@"giulio",@"ciccio",@"panzo", nil];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
-(IBAction)prova {
for (NSString *myElement in cose) {
if ([myElement isEqualToString:textfield1.text]) {
label1.text = textfield1.text;
}
else {
UIAlertView *alertCellulare = [[UIAlertView alloc] initWithTitle:@"Attenzione!" message:@"connessione assente" delegate:self cancelButtonTitle:@"ok" otherButtonTitles:nil, nil];
[alertCellulare show];
}
}
}