How can I get the values from dictionary order which I added. Or Is there any way get ordered dictionary the order should be which I added order.
[inputParams setObject:@"One" forKey:@"allTasksDeatils"];
[inputParams setObject:@"123" forKey:@"ORGID"];
Result is:
{
ORGID = 123;
allTasksDeatils = One;
}
I want in same format like first object is become first :
{
allTasksDeatils = One;
ORGID = 123;
}
please help me..thanks in advance