iOS:如何像 iBook 一样将图像放在 tableView 顶部
如果您在 iBook 上一直向上滚动,您可以看到一个苹果标记(位于搜索和两个按钮上方)。如何将这样的图像放在 TableView 之上?
我的第一个猜测是苹果只是使用图像作为背景并以某种方式将其对齐。我走在正确的轨道上吗?
If you scroll all the way up on the iBook, you can see an apple mark (above search and two buttons). How can you put such image on top of the TableView?
My first guess is that apple just used an image as its background and somehow aligned it right. Am I on right track?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是一个
UIImageView
,可以设置为tableHeaderView
(查看文档),并给定负顶contentInset
表格,或者只是添加为子视图表视图本身。后者可能更简单——只需将图像视图的位置设置为具有负 Y 值的位置即可。It's a
UIImageView
, either set as atableHeaderView
(check the docs) with the table given negative-topcontentInset
, or just added as a subview of the table view itself. The latter's probably simpler—just set the image view's position to something with a negative Y value.