0
當我的應用程序啓動時,用戶呈現的第一件事是在UITabBar
中的Web視圖。不幸的是,直到網頁加載,他們盯着一個空白的屏幕減去UITabBar
。一旦網頁加載,我將如何隱藏標籤?UIWebView加載前的顯示標籤
firstviewcontroller.h:
@property (strong, nonatomic) IBOutlet UIWebView *webPage;
firstviewcontroller.m:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSString *fullURL = @"http://example.com";
NSURL *url = [NSURL URLWithString:fullURL];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[_webPage loadRequest:requestObj];
}