I am parsing an rss feed and showing it in a webview I have set the background color of the webview as black using an image view.The parsed data is stored in a NSString…what I want is to change the textcolor,fontsize,fonttype of the string data..
self.itemTitle.text=[item objectForKey:@"title"];
[self.itemSummary loadHTMLString:[item objectForKey:@"description"] baseURL:nil];
[self.itemSummary setClipsToBounds:YES];
self.itemSummary.opaque=NO;
self.itemSummary.backgroundColor=[UIColor clearColor];
You can use HTML colors.
Edit: added the text color.
Edit 2: added font size and face