graetzer/SGTabs

On tab change title disappear

Opened this issue · 1 comments

When you add multiple tabs and try to change tab by taping on the other tap, title of the selected tab disappear, one by one all tabs title disappears

Solution for the above issue is: Put the below code into SGViewController.m

  • (void)webViewDidFinishLoad:(UIWebView *)webView{

    NSString *title = [webView.request.URL absoluteString];
    self.title = title;
    self.textField.text = title;
    }