我里面有一些整数值NSMutableArray
。我添加了一个UITextField
和一个UIButton
。如果在里面输入一个数字textfield
并单击按钮进行比较。如果输入的数字匹配,我需要显示NSLog
. 但它不起作用。
代码:
arr = [[NSMutableArray alloc]init];
[arr addObject:[NSNumber numberWithInteger:1]];
按钮点击:
-(void)click:(id)sender{
if (text.text == [arr objectAtIndex:0]){
NSLog(@"values matched");
}
}