Просмотр исходного кода

Set titles for web views pushed onto the navigation stack.

Ryan Olson лет назад: 11
Родитель
Сommit
95eaab3486
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      Classes/Global State Explorers/FLEXWebViewController.m

+ 1 - 0
Classes/Global State Explorers/FLEXWebViewController.m

@@ -90,6 +90,7 @@
         // For clicked links, push another web view controller onto the navigation stack so that hitting the back button works as expected.
         // Don't allow the current web view do handle the navigation.
         FLEXWebViewController *webVC = [[[self class] alloc] initWithURL:[request URL]];
+        webVC.title = [[request URL] absoluteString];
         [self.navigationController pushViewController:webVC animated:YES];
     }
     return shouldStart;