Re: WebFrame stopLoading in delegate crashes app

2008-08-27 Thread Ewan McDougall
On 22 Aug 2008, at 18:55, Nick Zitzmann wrote: On Aug 22, 2008, at 4:18 AM, Ewan McDougall wrote: Calling [WebFrame stopLoading] within the delegate didStartProvisionalLoadForFrame crashes the app. Is this a bug or am I doing something silly? What's the backtrace? If it's within the Web

Re: WebFrame stopLoading in delegate crashes app

2008-08-22 Thread Nick Zitzmann
On Aug 22, 2008, at 4:18 AM, Ewan McDougall wrote: Calling [WebFrame stopLoading] within the delegate didStartProvisionalLoadForFrame crashes the app. Is this a bug or am I doing something silly? What's the backtrace? If it's within the WebKit framework, then you should probably conside

WebFrame stopLoading in delegate crashes app

2008-08-22 Thread Ewan McDougall
Hello, Using the WebKit I'd like to be able to look at the URL that a frame is loading and on some occasions stop the load. - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame: (WebFrame *)frame { [frame stopLoading]; } Calling [WebFrame stopLoading] within the delegat