I am having a trouble with NSDictionary am adding value as a kilo meters and name as a key this is how am giving
NSDictionary * dd = [NSDictionary dictionaryWithObjects:locationKMArray forKeys:nameArray];
NSLog(@"%@",dd);
This is how outputs looks like
name1 = 1.011115;
name2 = 55.14256;
name3 = 150.48752;
name4 = 22.48668;
:
:
looks like this now i want to print only less than 100.000 kilo meters how can i do this
You can filter the
dd
as below: