ios – 如何在iPhone应用程序中创建popover?

我正在寻找在iPhone的popover,我想让它像iOS 5阅读器功能

经过一番研究,我发现WEPopover和FPPopover,但我正在寻找有什么像这样的API内置的iphone SDK.

解决方法

您可以使用一些自定义艺术品制作UIView,并在视图顶部显示动画作为“popover”,其中包含一些按钮:
UIView *customView = [[UIView alloc] initWithFrame:CGRectMake(25,25,100,50)]; //<- change to where you want it to show.

//Set the customView properties
customView.alpha = 0.0;
customView.layer.cornerRadius = 5;
customView.layer.borderWidth = 1.5f;
customView.layer.masksToBounds = YES;

//Add the customView to the current view
[self.view addSubview:customView];

//display the customView with animation
[UIView animateWithDuration:0.4 animations:^{
    [customView setAlpha:1.0];
} completion:^(BOOL finished) {}];

如果要使用customView.layer,请不要忘记#import< QuartzCore / QuartzCore.h>.

相关文章

当我们远离最新的 iOS 16 更新版本时,我们听到了困扰 Apple...
欧版/美版 特别说一下,美版选错了 可能会永久丧失4G,不过只...
一般在接外包的时候, 通常第三方需要安装你的app进行测...
前言为了让更多的人永远记住12月13日,各大厂都在这一天将应...