John,
This is what I have:
- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame
{
// Only report feedback for the main frame.
if (frame == [sender mainFrame]){
while([sender isLoading]) {}; //delay until fully loaded
On Feb 25, 2011, at 12:24 PM, Bruce Cresanta wrote:
> Hello,
>
> I've noticed that certain webpages render fine in WebView, but that the
> data in the dataSource remains nil.Is this a bug in webkit? Is there a
> way to get consistent data? For example, http://www.php.net renders
Hello,
I've noticed that certain webpages render fine in WebView, but that the
data in the dataSource remains nil.Is this a bug in webkit? Is there a
way to get consistent data? For example, http://www.php.net renders fine in
the browser, but the control's data is never set.
Th