我有一个名为UIViewController
的{{1}},它提供了一个提醒表格。
当用户选择第一个单元格(“添加提醒”)时,我使用mainScreenViewController
而不使用UIPageViewController
来展示名为newReminderPageViewController
的{{1}}。
我在presentViewController: animated: completion:
(UINavigationController
)中有2 UIViewControllers
,其中一个名为newReminderPageViewController
,另一个名为pageView
。在colourViewController
用户选择提醒颜色,当用户向左滑动时(使用titleViewController
滑动至colourViewController
),用户会为提醒选择标题。
在titleViewController
上,您还有一个“添加”按钮,用于创建提醒(使用名为pageView
的模型类,并具有2个属性:颜色和标题)并返回titleViewController
(使用Reminder
)
我的问题是:我需要将mainScreenViewController
上创建的新提醒传递给dismissViewControllerAnimated: completion:
上名为titleViewController
的数组。我需要reminders
(mainScreenViewController
)下的特定mainScreenViewController
对象及其所有信息,因此我无法创建新对象(newReminderPageViewController
)。
如何将pageView
上创建的新提醒传递给现有newReminderPageViewController *nRPVC=[newReminderPageViewController alloc]init];
上的titleViewController
数组?
谢谢!