SGTabs icon indicating copy to clipboard operation
SGTabs copied to clipboard

On tab change title disappear

Open smindia1988 opened this issue 10 years ago • 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

smindia1988 avatar Jul 17 '14 11:07 smindia1988

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; }

smindia1988 avatar Jul 17 '14 11:07 smindia1988