Note that there are some explanatory texts on larger screens.

plurals
  1. POIn JSON parsing i am having issue at the time of dynamic parsing
    primarykey
    data
    text
    <p>I can't get exact out put after JSON parsing.</p> <p><code>strURLRootView</code> is <code>NSString</code> Object of "<strong>RootViewController.m"</strong> class...</p> <pre><code>strURLRootView = txt_EnterURL.text; </code></pre> <p><code>strURLRank</code> is also the <code>NSString</code> Object of <strong>"CheckRank_ViewController.m"</strong> class...</p> <pre><code>strURLRank = strURLRootView; -(void)viewDidLoad { [self startJSONParsing]; [super viewDidLoad]; } -(void)startJSONParsing { responseData = [[NSMutableData data] retain]; ArrData = [NSMutableArray array]; NSString *stringWithoutSpaces = [NSString stringWithFormat:@"http://lsapi.seomoz.com/linkscape/url-metrics/%@%2fblog?AccessID=member-10fd5cb877&amp;Expires=1365850483&amp;Signature=m%2F7hZu1y7Sa00NGLFKHYY%2FO3TB4%3D",strURLRank]; </code></pre> <p>if i use</p> <p>@"http://lsapi.seomoz.com/linkscape/url-metrics/www.yahoo.com%2fblog?AccessID=member-10fd5cb877&amp;Expires=1365850483&amp;Signature=m%2F7hZu1y7Sa00NGLFKHYY%2FO3TB4%3D"</p> <p>this URL Statically it will give exact out put.</p> <pre><code> NSLog(@"stringWithoutSpaces is:--&gt; %@\n\n",stringWithoutSpaces); NSURLRequest *request1 = [NSURLRequest requestWithURL: [NSURL URLWithString:stringWithoutSpaces]]; NSLog(@"request1 is:--&gt; %@\n",request1); [[NSURLConnection alloc] initWithRequest:request1 delegate:self]; } (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response { [responseData setLength:0]; } (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data { [responseData appendData:data]; } (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error { NSLog(@"Error occured at the time of parsing..."); } (void)connectionDidFinishLoading:(NSURLConnection *)connection { [connection release]; NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding]; [responseData release]; results = [responseString JSONValue]; lbl_RootDomain.text = [results objectForKey:@"upl"]; lbl_URL.text = [results objectForKey:@"uu"]; lbl_Title.text = [results objectForKey:@"ut"]; lbl_SubDomain.text = [NSString stringWithFormat:@"%f",[[results objectForKey:@"fmrp"] floatValue]]; lbl_MozRank.text = [NSString stringWithFormat:@"%f",[[results objectForKey:@"umrp"] floatValue]]; lbl_DomainAutho.text = [NSString stringWithFormat:@"%d",[[results objectForKey:@"pda"] intValue]]; lbl_XternalLinks.text = [NSString stringWithFormat:@"%d",[[results objectForKey:@"ueid"] intValue]]; lbl_Links.text = [NSString stringWithFormat:@"%d",[[results objectForKey:@"uid"] intValue]]; lbl_PageAutho.text = [NSString stringWithFormat:@"%f",[[results objectForKey:@"upa"] floatValue]]; NSLog(@"results data is:--&gt; %@",results); NSString *str = [NSString stringWithFormat:@"Root Domain: %@\n URL: %@\n Title: %@\n Subdomain mozRank: %@\n MozRank: %@\n Domain Authority: %@\n External Links: %@\n Links: %@\n Page Authority: %@\n",lbl_RootDomain.text,lbl_URL.text,lbl_Title.text,lbl_SubDomain.text,lbl_MozRank.text,lbl_DomainAutho.text,lbl_XternalLinks.text,lbl_Links.text,lbl_PageAutho.text]; NSLog(@"mail data is:--&gt; \n\n %@",str); } </code></pre> <p>I am not getting the exact problem in coding. If i am wrong in coding then please tell me what is wrong.</p> <p>Thanks in advance.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload