Actually I want to populate an array to fill up my table view, but the problem is I have to compare two strings and if they match I wanted to add that string in the array. Here is my code:
for (NSDictionary *item in facilityZoneData) {
NSString *zoneFacilityID = [NSString stringWithFormat:@"%@",[item objectForKey:@"FacilityId"]];
if ([detailFacility isEqualToString:zoneFacilityID ]) {
NSLog(@"object added");
}
}
The detailFacility is NSString object which is declared in the header file. The problem is it is not at all comparing the string. I know that there are surely some values which are equal. tell me if I am missing something
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…