UIPickerView 在 UIActionSheet 中可以接受吗?
在 UIActionSheet 中包含 UIPickerView 是否可以接受(又名 Apple 认为可以接受)?
Is it acceptable (aka would Apple consider it acceptable) to have a UIPickerView in a UIActionSheet?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,这是完全可以接受的。在某种程度上,它甚至受到鼓励。
示例代码: 此处作者:Erica Sadun,在她的《iPhone 开发者食谱》一书中。第11章 食谱21
Yes, It is totally acceptable. To some degree its even encouraged.
Example code: HERE by Erica Sadun in her book iPhone Developer's cookbook. Chapter 11 Recipe 21
是的。这是可以接受的。
设置 UIPickerView 的框架
将 UIPickerView 添加到 actionView
我记得,在这种情况下,actionView 将全屏
Yes. It is acceptable.
set the frame of the UIPickerView
add the UIPickerView to the actionView
As I remember, actionView will be full screen in this case
这应该可以做到:
请记住,您必须设置 UIPickerView 的 dataSource 和 delegate 。
This should do it :
Please remember that you have to set UIPickerView´s dataSource and delegate .