显示向下滑动(如 iPad 拆分视图)

发布于 2024-11-28 18:17:51 字数 110 浏览 0 评论 0原文

我很好奇如何从 UIBarButtonItem 实现下拉菜单,就像在 iPad 的分割视图上的纵向方向一样。这是怎么做到的?我本来会尝试自己寻找它,但我真的不知道我应该寻找什么。

提前致谢!

I'm curious about how to implement a drop down menu from a UIBarButtonItem like in the portrait orientation on iPad's split view. How is this done? I would have tried searching for it myself, but I don't really know exactly what I should be searching for.

Thanks in advance!

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

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

发布评论

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

评论(1

递刀给你 2024-12-05 18:17:51

创建一个新的 UIView 类(这将是弹出窗口中显示的视图)

然后在该类的 .h 中,如果您想

@interface TheClassWerePopoverIsShown : UIViewController {
    UIPopoverController *popover;
}

在 barbuttonitem 单击操作下的 .m 中打开此弹出窗口,请添加此内容

if ([popover isPopoverVisible]) {
        [popover dismissPopoverAnimated:YES];
    }
    else {
        THECLASSTOSHOW *popie = [[THECLASSTOSHOW alloc]init];
        popover = [[UIPopoverController alloc]
                   initWithContentViewController:popie];
        popover.popoverContentSize = CGSizeMake(300, 700);
        [popie release];
        [popover presentPopoverFromBarButtonItem:THEBARBUTTONITEM permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}

Make a new UIView class(this will be the view that will be shown in the popover)

Then in the .h of the class were you want to open this popover

@interface TheClassWerePopoverIsShown : UIViewController {
    UIPopoverController *popover;
}

in the .m under the barbuttonitem click action add this

if ([popover isPopoverVisible]) {
        [popover dismissPopoverAnimated:YES];
    }
    else {
        THECLASSTOSHOW *popie = [[THECLASSTOSHOW alloc]init];
        popover = [[UIPopoverController alloc]
                   initWithContentViewController:popie];
        popover.popoverContentSize = CGSizeMake(300, 700);
        [popie release];
        [popover presentPopoverFromBarButtonItem:THEBARBUTTONITEM permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文