XIB 模态窗口 ios
Posted
技术标签:
【中文标题】XIB 模态窗口 ios【英文标题】:XIB Modal window ios 【发布时间】:2014-12-03 13:56:40 【问题描述】:如何在objective-c XIB窗口中创建模态窗口? 我创建了一个多列表,现在单击任何行,即在 didSelectRowIndexPath 事件上我想打开一个模式窗口。
【问题讨论】:
【参考方案1】:当您在行中选择一个单元格时。定义要在模态视图中显示的视图控制器。
YourViewController *vc = [[YourViewController alloc] initwithnibname:@"YourViewController" bundle:nil];
vc.(delegatemethod) = self;
[self presentViewController:vc animated:YES completion:NULL];
【讨论】:
嗨,我按照以下步骤完成了上述操作:通过 1)@protocol myViewControllerDelegate以上是关于XIB 模态窗口 ios的主要内容,如果未能解决你的问题,请参考以下文章