我正在为 ipad 编写应用程序。我创建了一个 PopViewController 作为弹出菜单,并在用户单击 actionButton 时在 ThirdViewConroller 中使用以下语句。
// set UIPopupoverController
-(IBAction)actionButton:(id)sender
{
if([popupCtr isPopoverVisible])
{
[popupCtr dismissPopoverAnimated:YES];
}else
{
[popupCtr setPopoverContentSize:CGSizeMake(500, 500)];
[popupCtr presentPopoverFromBarButtonItem:sender permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}
}
ThirdViewController 有一个 UIWebView。我想将用户在 UIWebView 中选择单词的数据传递给 PopViewController,然后我可以通过单击 PopViewController 中的按钮来使用这些数据。比如ipad的mail-app中的按钮Reply、Reply All、Forward、Print等都是从邮件中获取数据的。
我该怎么做?
谢谢你的帮助。