HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了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 – 如何在iPhone应用程序中创建popover?全部内容,希望文章能够帮你解决ios – 如何在iPhone应用程序中创建popover?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。