Conforms to NSObject
Declared in SCWebBrowserToolbar.h

Overview

The SCWebBrowserToolbar protocol provides interface for [SCWebBrowser setCustomToollbarView:] method’s argument.

SCWebBrowser has simple navigator view and if you need to provide own custom navigator view, please pass UIView object which conforms to SCWebBrowserToolbar protocol.

Tasks

Properties

delegate

You custom navigator view will be provided with delegate object when you set it using [SCWebBrowser setCustomToollbarView:] method.

@property (nonatomic, weak) id<SCWebBrowserToolbarDelegate> delegate

Discussion

You custom navigator view will be provided with delegate object when you set it using [SCWebBrowser setCustomToollbarView:] method.

SCWebBrowserToolbarDelegate delegate object can be used to load the previous or next location in the back-forward list, see [UIWebView goBack] for details.

Declared In

SCWebBrowserToolbar.h

Instance Methods

didStartLoadingWebBrowser:

SCWebBrowser calls this method when start loading of site.
You can use this method to start activity of loading indicator.

- (void)didStartLoadingWebBrowser:(SCWebBrowser *)webBrowser

Parameters

webBrowser

the SCWebBrowser object sender.

Discussion

SCWebBrowser calls this method when start loading of site.
You can use this method to start activity of loading indicator.

Declared In

SCWebBrowserToolbar.h

didStopLoadingWebBrowser:

SCWebBrowser calls this method when finish loading of site.
You can use this method to stop activity of loading indicator.

- (void)didStopLoadingWebBrowser:(SCWebBrowser *)webBrowser

Parameters

webBrowser

the SCWebBrowser object sender.

Discussion

SCWebBrowser calls this method when finish loading of site.
You can use this method to stop activity of loading indicator.

Declared In

SCWebBrowserToolbar.h