构建自定义模态视图
我正在寻找为 iPad 应用程序构建自定义模式视图。我认为我可以简单地使用内置的模态视图控制器功能,然后自定义它的外观以适合我的设计。事实证明这不是真的。关于我将如何去做的任何好的建议或文档。我的 Objective-C 知识有限。
I am looking to build out a custom modal view for an ipad app. I thought I could simply use the built in modal view controller ability and then customize it's appearance to fit my designs. Turns out that's not true. Any good advice or documentation on how I would go about doing so. My Objective-C knowledge is limited.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明这不是真的。
您的工作是创建一个自定义视图控制器并以您想要的任何方式设计其视图。然后根据您的需要设置其
modalPresentationStyle
后,使用presentModalViewController:animated:
以模态方式呈现它。Turns out it's not true that that's not true.
Your job is do create a custom view controller and design its view in any way you want. Then present it modally with
presentModalViewController:animated:
afte setting itsmodalPresentationStyle
according to your needs.