Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. if ([remoteManager.operationId isEqualToString:NEEDED_OPERATION_ID]) {
  2. if ([response[RESULT_CODE_KEY] isEqualToString:@"OK"]) {
  3. if ([response[RESULT_OBJ_KEY][@"CONTENT_LIST"] count] > 0) {
  4. NSMutableDictionary *tempDict = [[NSMutableDictionary alloc] init];
  5.  
  6. for (NSMutableDictionary *productsAvailable in response[RESULT_OBJ_KEY][@"CONTENT_LIST"]) {
  7. for (NSString *key in productsAvailable) {
  8. if ([key isEqualToString:@"NEEDED_KEY"]) {
  9. /* We change the date format here */
  10. }
  11. }
  12. }
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement