up vote 1 down vote favorite
share [g+] share [fb]

I m a new developer in iphone... please help...

link|improve this question

feedback

2 Answers

-(IBAction)buttonPressed:(id)sender{

NSLog(@"button pressed");

//|=%7c [pipe], you can used NSString *myurl=[yoururl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

NSString* myurl=@"your google chart url";

NSMutableURLRequest *theRequest=[NSMutableURLRequest requestWithURL:[NSURL URLWithString:myurl] cachePolicy:NSURLRequestUseProtocolCachePolicy
                                                    timeoutInterval:60.0];                                              

NSURLResponse* response;
NSError* error;
NSData *imageData=[NSURLConnection sendSynchronousRequest:theRequest returningResponse:&response error:&error];
NSLog(@"%@",error); 
NSLog(@"%@",response);
NSLog(@"%@",imageData); 

UIImage *myimage = [[UIImage alloc] initWithData:imageData];

self.ringImge.image=myimage;

}

link|improve this answer
Thanks a lot... i will try it. – David Jul 29 '10 at 12:45
hey it worked... Thanks :) – David Jul 30 '10 at 18:07
feedback
up vote 0 down vote accepted

sorry people one alteration in the above reply. use encoding for the url.

NSString *myurl=[yoururl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.