XIB模态窗口ios

时间:2014-12-03 13:56:41

标签: objective-c xib

如何在objective-c XIB窗口中创建模态窗口? 我创建了一个多列表,现在点击任意行,即在didSelectRowIndexPath事件中,我想打开一个模态窗口。

1 个答案:

答案 0 :(得分:0)

当您在行中选择一个单元格时。定义要在模态视图中显示的视图控制器。

YourViewController *vc = [[YourViewController alloc] initwithnibname:@"YourViewController" bundle:nil];
vc.(delegatemethod) = self;
[self presentViewController:vc animated:YES completion:NULL];