I m using ios5.i m parsing a json object and getting the values in my console.but when i tried to assign the value in webview.i m not getting the values.i have made proper connections in my IBOutlet.but still its not working below is the code and the screen shot

- (id)initWithItem:(NSDictionary *)detaildesc1 Title:(NSString *)title
{
if (self = [super initWithNibName:@"ThirdDetailView" bundle:nil]) {
id1=detaildesc1;
self.theTitle=title;
urlAddress = [NSString stringWithFormat:@"http://dev- parkguiden.knutpunkten.se/Api/GetPark?parkid=%@",id1];
baseURL =[[NSURL URLWithString:urlAddress]retain];
jsonData=[NSData dataWithContentsOfURL:baseURL];
self.title=title;
NSDictionary *items=[NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableLeaves error:nil];
NSLog(@"what is the text:%@",[items objectForKey:@"description"]);
[self.webview loadHTMLString:[items objectForKey:@"description"] baseURL:nil];
}
return self;
}
you can first ensure that your webview is loaded into the memory from IBOutlets when you are lading string in it. i.e. viewDidLoad/viewDidAppear have been called for the controller having this webview when you are loading this string to webview.