SGTabs
SGTabs copied to clipboard
On tab change title disappear
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; }