C
cenk
Guest
Hello friendsi
I am creating a new iphone application. It is a tab bar application but loading xib files froum outside. In every xib file i have a view which includes a webview and a button.
Everything works good, but i want to show an activity indicator while webview loads. I made the viewcontroller UIWebViewDelegate, and set my WebView.delegate=self
So, now i want to use - (void)webViewDidFinishLoad
UIWebView *)webView { } and - (void)webViewDidStartLoad
UIWebView *)webView { } methods. But dealloc method works before these methods and it gives an error. If i dont use [super dealloc]; it works fine but it gives a warning that "you missed a super dealloc". i dont know what to do.
can someone help me?
I am creating a new iphone application. It is a tab bar application but loading xib files froum outside. In every xib file i have a view which includes a webview and a button.
Everything works good, but i want to show an activity indicator while webview loads. I made the viewcontroller UIWebViewDelegate, and set my WebView.delegate=self
So, now i want to use - (void)webViewDidFinishLoad
can someone help me?