- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
默认情况下,iPad 模态表单获得圆角。在一些 Apple 的应用程序中,例如 iTunes,表单具有完美的方角。是否有一种相对简单的方法可以删除不会让我被 App Store 拒绝的圆角半径?
最佳答案
把它放在你正在显示的 View 中:
//You will have to link to the QuartzCore library
#import <QuartzCore/QuartzCore.h>
- (void)viewDidLoad
{
[super viewDidLoad];
//set border radius on initial load
self.view.layer.cornerRadius = 0;
}
- (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
//for some reason the cornerRadius resets itself on orientation change
self.view.layer.cornerRadius = 0;
}
关于ios4 - 带有方形(0 半径)角的 UIModalPresentationFormSheet?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3705445/
我正在尝试使用 UIModalPresentationFormSheet 在 iPad 应用程序中显示模态视图 Controller 查看样式。我正在寻找类似于邮件应用程序的新消息 UI/动画的东西。
如果这是一个明显的问题,请原谅我,我是个新手。 我有一个模态视图,我设置了自定义大小和圆角: - (void)viewWillLayoutSubviews{ [super viewWillLa
基本上,我希望模态表单是透明的,这样我就可以看到它后面的 UIView(它是全屏的)。 这可能吗?将 UIView 设置为不透明并且 [UIColor clearColor] 的 background
我有一个 UIViewController 实现 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)inte
我正在为 iPad 制作一个应用程序,它主要是一个带有设置按钮的 UISplitViewController 应用程序,该按钮使用 UIModalPresentationFormSheet 打开设置
我正在使用 UIModalPresentationFormSheet 显示自定义大小的模态,如下所示: UIViewController *viewController = [[UIViewC
这个问题在这里已经有了答案: iOS: Why do I have white, rounded corners on my modal view? (9 个回答) 关闭 9 年前。 我尝试在深色背
我有一个与 UIModalPresentationFormSheet 一起显示的 UIViewController。因此,当键盘可见时,它会一直保持可见状态,直到 View Controller 被关
我想在 UIModalPresentationPageSheet View 的一角添加一个 float 关闭 (x) 按钮。效果如下: 但是将它添加到父 View 会使它出现在页面表后面(并且也无法点
我有一个 View Controller (A),它以表单形式 (UIModalPresentationFormSheet) 的形式呈现另一个 View Controller (B)。 现在我想关闭
如何在 iPhone 上制作模态视图的呈现样式 UIModalPresentationFormSheet(或类似的东西)? 提前致谢! 最佳答案 您不能使用内置框架。 您必须编写自己的代码以模态方式显
我正在尝试将模态视图 Controller 显示为 UIPresentationFormSheet。 View 出现了,但我似乎无法调整它的大小。我的 XIB 具有适当的高度和宽度,但是当我这样调用它
我有兴趣知道如何在使用 modalPresentationStyle 的 UIModalPresentationFormSheet 时调整 View 大小,它看起来有固定的大小,所以我想知道是否有人出
我使用UIStoryboardSegue - (void)perform { [(UIViewController *)self.destinationViewController setMo
我在 iPad 中使用以下代码使用 UIModalPresentationFormSheet 执行首选项功能。 self.preferencesViewController = [[Preferenc
我正在使用以下代码来显示屏幕/ View Controller 。 SearchParams *nxt=[[SearchParams alloc] initWithNibName:@"SearchPa
我们的 iPad 版本中有下一个问题。 我在 UITabBar 中有一个 NavigationController。我想显示一个外观与电子邮件表单相似的表单。 我使用相同的代码来显示居中的模型: //
默认情况下,iPad 模态表单获得圆角。在一些 Apple 的应用程序中,例如 iTunes,表单具有完美的方角。是否有一种相对简单的方法可以删除不会让我被 App Store 拒绝的圆角半径? 最佳
在 iPhone 6+ 上模态显示 ViewController,样式为 UIModalPresentationFormSheet根据方向打开不同。 在纵向模式下,它看起来像普通的 Modal(与较小
在我的 iPad 应用程序中,我有一个 UIButton,它调用 IBAction 来调用 View Controller 作为模态来显示视频。我希望模态显示为 720x405,这部分看起来没问题。这
我是一名优秀的程序员,十分优秀!