I'm passing some value to server url and display it in UIWebView. Yesterday it was working, but it displaying enable cookies. Does i need to change the NSURL?
UIWebView *webview=[[UIWebView alloc]initWithFrame:CGRectMake(0, 0, 320,480)];
NSURL *url=[NSURL URLWithString:[NSString stringWithFormat:@"http://server.net/projects/checkout/cart/add?product=%d",i]];
NSURLRequest *nsrequest=[NSURLRequest requestWithURL:url];
[webview loadRequest:nsrequest];
[self.view addSubview:webview];