像 iOS 日历应用程序一样呈现 UIDatePicker
我已经设法将 UIDatePicker 获取到 UITableView,并且它工作正常,当您单击其他单元格时显示和隐藏。但有两个问题。
由于我将其添加到视图中,因此我无法使用 ScrollPositionMiddle,因为 UIDatePicker 会覆盖它。 另一个问题是我无法向下滚动到其他单元格,因为它挡住了视图。有人对如何将 UIDatePicker 添加到 UITableView 有更好的实现吗?
I've managed to get the UIDatePicker to a UITableView and it works fine, shows and hides when you click on other cells. But there are two problems.
Since I added it to the view, I can't use ScrollPositionMiddle since the UIDatePicker will cover it up.
The other problem is that I can't scroll down to my other cells 'cause it's blocking it from view. Anyone have any better implementations on how to add the UIDatePicker to a UITableView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您缺少的唯一步骤是将表视图的 contentInsets 设置为重叠的大小。这应该可以解决你剩下的问题。
Sounds like the only step you're missing is to set the contentInsets of the table view to the size of the overlap. That should fix the rest of your problems.