尝试创建一个带有圆角的弹出式 UITableView
我绞尽脑汁都没有想到这个 - 我想要一个 UITableView 弹出,所以它漂浮在下面的东西上,但有圆角。我不知道是否需要在 UIView 的 drawRect 中使用剪切路径(除了显示带有方角的表格之外,我无法执行任何操作),或者是否有明显的东西丢失。
我想避免使用带有圆角的图形,我在上面放置了一个稍小的桌子,但如果涉及到的话,至少我知道如何以这种方式回避它。
非常感谢任何帮助/指示!
Been racking my brains to no avail with this one - I want to have a UITableView pop up, so it's floating over the stuff underneath, but with rounded corners. I don't know whether I need to use a clipping path in a UIView's drawRect (which I can't get to do anything except show the table with square corners) or if there's something obvious I'm missing.
I want to avoid the use of a graphic with rounded corners which I place a slightly smaller table on, though if it comes to it at least I know how to bodge it that way.
Any help / pointers much appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确,那么这应该对您有帮助:
.m
文件中添加#import
QuartzCore.framework 添加依赖项
viewDidLoad
方法中:代码:
If I understand you correctly then this should help you:
.m
file add#import <QuartzCore/QuartzCore.h>
QuartzCore.framework
viewDidLoad
method:Code: