Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我有一组 URL,我希望将它们按顺序加载到单个 UIWebView 中。因此,每个人都会等待前一个人完成加载,然后再开火。
这样做的最佳方法是什么?
为您UIWebView将其委托设置为自我,并添加以下功能
UIWebView
- (void)webViewDidFinishLoad:(UIWebView *)webView { //Load the other request }