I have some integer values inside NSMutableArray
. I have added a UITextField
and a UIButton
. If a number is entered inside textfield
and clicking on the button does a comparison. If number entered matches, I need to show NSLog
. But it's not working.
code:
arr = [[NSMutableArray alloc]init];
[arr addObject:[NSNumber numberWithInteger:1]];
Button click:
-(void)click:(id)sender{
if (text.text == [arr objectAtIndex:0]){
NSLog(@"values matched");
}
}
Try this