我正在使用此Objective-C代码向窗口添加视图:
// Main Storyboard
UIStoryboard *mainStoryBoard = [UIStoryboard storyboardWithName:@"Main" bundle: nil];
// View controller with the view to add
UIViewController *vc = [mainStoryBoard instantiateViewControllerWithIdentifier:@"SomeViewController"];
// Find the topmost window
UIWindow *topWindow = [[[UIApplication sharedApplication].windows sortedArrayUsingComparator:^NSComparisonResult(UIWindow *win1, UIWindow *win2) {
return win1.windowLevel < win2.windowLevel || !win1.isOpaque;
}] lastObject];
// Add the view to the window
[topWindow addSubview:vc.view];
这很好,我在SomeViewController
中使用的Swift方法也离开了视图:
// Get topmost window (Should be UIWindow)
let topWindow = UIApplication.shared.windows.sorted {
(win1, win2) in
return win1.windowLevel < win2.windowLevel || !win1.isOpaque
}.last
// Force view to prepare to disappear
self.viewWillDisappear(true)
// Send the view to the back
topWindow?.sendSubviewToBack(view)
这是我的Objective-C代码运行后视图的结构。选定的视图是已添加的视图:
问题是新视图中的所有按钮均无法正常工作,因此我无法触发上述close方法。我尝试了在情节提要中添加的两个按钮以及以编程方式添加的按钮。轻按按钮时,外观上会做出反应,但不会触发任何操作。
我最终通过完全换出根视图控制器而不是简单地将其视图添加为子视图来解决该问题。问题是正如@DonMag指出的那样,我正在添加没有其视图控制器的子视图。我发现有关交换根视图控制器的this question,并将其用作更改的基础。如果有人想提供不需要交换根视图控制器的完整解决方案,我会接受。