有什么区别:
[self.navigationController presentModalViewController:nav animated:YES];
和
[self presentModalViewController:nav animated:YES];
其中 self 是 UIViewController 的子类。
除此之外,我如何消除模态视图是否重要?例子:
[self dismissModalViewControllerAnimated:YES];
或者
[self.navigationController dismissModalViewControllerAnimated:YES];
如果 modalView 由 呈现self.navigationController
,如果调用它会被关闭self
,反之亦然?
我知道苹果建议在实际实现中使用协议和委托,但我只是想找出“幕后”的行为是否相同。
我一直在四处寻找答案,但我还没有找到任何东西,所以如果这是重复的,我会事先道歉。
谢谢