i have a plist containing values as follows
1,23,45,67,88,99,34,26,50,28 - etc,etc
i am accessing the plist as follows:
NSString *path2 = [[NSBundle mainBundle] pathForResource:@"Fractions" ofType:@"plist"];
pickerData2 =[[NSDictionary alloc]initWithContentsOfFile:path2];
selectorKeysFractions = [[NSArray alloc] initWithArray:[pickerData2 allKeys]];
now i want to search the plist for values near to a value inputted by the user
so for example if the user enters 69 in a text field i want to find the value 67 from the plist and read the key values for that dictionary item
how can i find the nearest value?
any help will be appreciated