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

Untitled

By: a guest on May 4th, 2012  |  syntax: Objective C  |  size: 0.49 KB  |  hits: 18  |  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. // Get URL hashes
  2.     NSArray* urlHashes = [self getURLHashes:url];
  3.     NSString* urlHash = (NSString*)[urlHashes objectAtIndex:0];
  4.     NSString* domainHash = (NSString*)[urlHashes objectAtIndex:1];
  5.    
  6.     // Request URL
  7.     NSString* requestURL = [NSString stringWithFormat:@"http://data.nova-initia.com/rf/remog/page/%@/%@.json&LastKey=%@", urlHash, domainHash, self.lastKey];
  8.    
  9.     NSLog(requestURL);
  10.    
  11.     return ([self send_request:requestURL method:@"GET" parameters:@""]);