经过一番研究,我发现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 propertIEscustomVIEw.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?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)