我在导航栏上点了一个按钮.我把它变成了模态视图.但问题是我无法将此模态视图放在标签栏的顶部.我该怎么办? 另外,我使用了storyboard的segue来呈现模态视图. Enter to see storyboard image
另外,我使用了storyboard的segue来呈现模态视图.
Enter to see storyboard image
Enter to see simulator image
很难从屏幕截图中看出来,但看起来你想要的是标签栏变灰,就像UITabBarController里面的视图背景一样?你在哪里提出模态视图?如果视图控制器A位于标签栏控制器内,则从A显示模态视图将导致标签栏不会变灰.如果您从标签栏控制器出现,它应该做你想要的.
在呈现视图控制器的代码中,而不是
present(modalViewController, animated: true, completion: completion)
尝试使用
tabBarController?.present(modalViewController, animated: true, completion: completion)
(当然,modalViewController和completion是你对这些参数使用的意思.)
编辑:
如果您使用segue来呈现模态控制器,则适用相同的概念.将segue移动到标签栏控制器,然后在显示视图控制器的标签栏控制器上执行它.
tabBarController?.performSegue(withIdentifier: "yourSegueIdentifier", sender: tabBarController)