Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 26th, 2012  |  syntax: None  |  size: 0.38 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Method Return NSMutableDictionary
  2. -(NSDictionary*)DictionaryValues:(NSArray*)arrayList{
  3.     //calling delegate method....
  4.     return (nsmutabledictionary*);
  5. }
  6.        
  7. - (NSMutableDictionary *) dictionaryValues:(NSArray*)arrayList{
  8.     // ...
  9.     NSMutableDictionary *yourDictionary = [NSMutableDictionary dictionary];
  10.     // do something with your dictionary
  11.  
  12.     return yourDictionary;
  13. }