我创建了一个新项目来试验 MultipeerConnectivity。我添加了这些行以在 viewDidLoad 中显示一个视图控制器,但它没有出现。为什么?我只能看到白色背景。
MCBrowserViewController *browserViewController =
[[MCBrowserViewController alloc] initWithBrowser:browser
session:session];
browserViewController.delegate = self;
self.modalPresentationStyle = UIModalPresentationFullScreen;
[self presentViewController:browserViewController animated:YES completion:
^{
[browser startBrowsingForPeers];
}];
更新:
我在控制台中看到了这个:
警告:尝试呈现 MCBrowserViewController:其视图不在窗口层次结构中!