Advertisement
01010harshad_vaghela

Untitled

Apr 26th, 2014
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. for ( NSDictionary *theCourse in rootarray)
  2. {
  3.  
  4.  
  5. number=[[NSMutableString alloc]initWithString:[theCourse objectForKey:@"CustomerNo"]];
  6. time=[[NSMutableString alloc]initWithString:[theCourse objectForKey:@"AllocationDate"]];
  7.  
  8. [mycall insertObject:number atIndex:0];
  9.  
  10. mycall=[[NSMutableArray alloc]initWithObjects:number,time, nil];
  11. NSLog(@"%@",mycall);
  12. // mycall=[NSMutableArray arrayWithObjects:customerno,allocationtime, nil];
  13. }
  14.  
  15. i get array value but ...when i try to display value on uitableview
  16. (see full text)
  17. cell.textLabel.text=[[mycall objectAtIndex:indexPath.row]objectForKey:@"number"];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement