向 UIPopoverController 添加内容

发布于 2024-12-12 10:36:01 字数 208 浏览 0 评论 0原文

我做了一个弹出窗口。目前该弹出窗口是空白的。我需要向弹出窗口添加 6 个按钮。按 6 个按钮中的任何一个,应用程序会将用户带到相应的屏幕。我想以表视图样式添加这些按钮。您可以考虑附带的图像(检查 iPad 左侧有 6 个选项的弹出窗口)。我想用同样的方式来做。请指导我。 问候 PC。在此处输入图像描述

I have made one popover. Presently that popover is blank. I need to add 6 buttons to the popover. Pressing any of the 6 buttons, the app takes the user to the respective screen. I want to add those buttons in table view style. You can consider the image attached with it (check the popup with 6 options in the left side of the iPad). I want to do it in the same way. Guide me please.
Regards PC.enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清晰传感 2024-12-19 10:36:01

创建一个视图控制器,添加一个 UITableView,实现它以正确显示单元格,使其成为弹出窗口控制器的内容。

Create a view controller, add a UITableView, implement it to show the cells correctly, make it the content of the popover controller.

灯角 2024-12-19 10:36:01

打开Xcode Organizer >文档并搜索UIPopoverController。在左侧边栏中的底部,打开“Popovers”示例代码项目。

基本上,您会发现需要在代码中的某个位置创建一个 UIPopoverController 实例:

- (void)viewDidLoad {
    ...
    /* 'contentCtrl' is an instance of UIViewController 
     * such as an UITableViewController
     */
    ...
    popover = [[UIPopoverController alloc] initWithContentViewController:contentCtrl];
    popover.popoverContentSize = CGSizeMake(320, 480);
    ...
}

并在某个时刻显示它,例如当用户按下按钮时:

- (IBAction)showPopover:(id)sender {
    UIButton *button = (UIButton *)sender;
    [popover presentPopoverFromRect:button.frame 
                             inView:self.view 
           permittedArrowDirections:UIPopoverArrowDirectionAny 
                           animated:YES];
}

我建议研究该示例。如果您需要有关 UITableView 部分的帮助,文档中提供了数十个有关该主题的示例(以及 SO 中的数百个问题)。

Open the Xcode Organizer > Documentation and search UIPopoverController. In the left sidebar, at the bottom, open 'Popovers' sample code project.

Basically you'll see that you need to create a UIPopoverController instance somewhere in your code:

- (void)viewDidLoad {
    ...
    /* 'contentCtrl' is an instance of UIViewController 
     * such as an UITableViewController
     */
    ...
    popover = [[UIPopoverController alloc] initWithContentViewController:contentCtrl];
    popover.popoverContentSize = CGSizeMake(320, 480);
    ...
}

And show it at some point, such as when the user press a button:

- (IBAction)showPopover:(id)sender {
    UIButton *button = (UIButton *)sender;
    [popover presentPopoverFromRect:button.frame 
                             inView:self.view 
           permittedArrowDirections:UIPopoverArrowDirectionAny 
                           animated:YES];
}

I'd suggest to study the sample. If you need help with the UITableView part, there are dozens of samples on the subject in the Documentation (and hundredths of questions in SO).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文