I have a UIViewController subclass which includes a UIWebView and implements the UIWebViewDelegate. What i want to do is make links pressed in the UIWebView to open in safari.
I noticed that you are not setting the delegate of "articleWebView" after you release it.
Try using this instead:
[articleWebView release];
articleWebView= [[UIWebView alloc] initWithFrame:CGRectMake(0,0,320,380)];
**articleWebView.delegate = self;**
[articleWebView loadHTMLString:content baseURL:[NSURL
URLWithString:@"http://www.mysite.gr/"]];
self.view = articleWebView;