Re: Problems with Webview in coredata framework app
Re: Problems with Webview in coredata framework app
- Subject: Re: Problems with Webview in coredata framework app
- From: "Julio Cesar Silva dos Santos" <email@hidden>
- Date: Sun, 14 Jan 2007 07:49:59 -0200
What is the content of the NSString site? If you do not escape the string
with percent escape characters this would be the expected behaviour (blank
webview). Change the line to:
[[webview mainFrame]
loadRequest:[NSURLRequest
requestWithURL:[NSURL
URLWithString:[site
stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]]];
and see what happens.
--
Julio Cesar Silva dos Santos
email@hidden
2007/1/13, Andrew Rodriguez <email@hidden>:
I have a webview in a coredata framework application that when I have it
display something through the program (eg. [[webview mainFrame]
loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:site]]];),
there are no errors, but the webview remains blank. Also the
estimatedProgress is 0.0000.
When I do this is a regular program - without the coredata framework, it
works perfectly.
Thanks for any help,
Andrew
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden