UITableView 顶部和底部阴影
在我的其中一个视图中,我使用 UIWebView,我喜欢背景视图顶部和底部以及滚动区域顶部和底部的默认阴影效果。
时钟应用程序中也有相同的内容,具有自定义背景(带有世界地图的蓝线),因此我猜也可以使用 UITableView...
这是我的网络视图,我想添加到表视图。我的网页视图:
所以我在此处添加了自定义背景(浅灰色纹理)。这是另一个视图的下面,我添加了相同的背景,但正如你所看到的,没有阴影......我猜它不是 UIScrollView 的内置效果。有没有办法对表视图执行相同的操作?
我的表格视图:
更新 1:
我发现这篇很棒的文章 UITableView 阴影 但没有阴影视图的底部。
In one of my view I'm using a UIWebView and I like the default shadow effects on top and bottom of the background view, and also top and bottom of the scroll area.
There is the same in the Clock app, with a custom background (blue line with world map) so it is possible using a UITableView also I guess...
Here is what I have with my web view, and that I'd like to add to a table view. My web view:
So I added an custom background here (the light gray texture). Here is below the other view where I added the same background, but as you can see there is no shadow... It's not a built-in effect as a UIScrollView I guess. Is there a way to do the same with a table view?
My table view:
UPDATE 1:
I found this great article UITableView Shadows but there is no shadow for the bottom of the view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
视图的一个基本部分是它的层,即 CALayer。您可以通过视图的图层属性来访问它:
在文档中,CALayers 有几个控制阴影的属性。您应该能够告诉导航栏的图层投射阴影。以及您想要投射阴影的任何其他内容的图层。
您需要确保将 QuartzCore 框架添加到您的项目中才能访问此属性。
A fundamental piece of a view is it's layer which is a CALayer. You can access it through the layer property of a view:
In the documentation CALayers have several properties that control the shadow. You should be able to tell the navigation bar's layer to cast a shadow. Along with the layers of any other content that you want to cast a shadow.
You will need to be sure to add the QuartzCore framework to your project to access this property.
这是我的 Swift 代码,我认为它运行良好:
Here is my code in Swift I think it works well :
这适用于
UITableViewController
和UIViewController
。在我的
viewDidLoad:
中,我使用以下代码:这将在导航栏下方添加阴影。
这是我在 Photoshop 中拼凑而成的影子:
[email protected]:
This works for both
UITableViewController
andUIViewController
.In my
viewDidLoad:
I use the following code:This will add the shadow just under the navigation bar.
And this is my shadow I threw together in Photoshop:
[email protected]:
我的代码。例如,页脚中的阴影:
图像:
对于标题:使用相同的代码,但只需垂直翻转图像并使用
viewForHeaderInSection
在第一部分 (0)。My code. E.g. for shadow in footer:
The images:
For the header: Use the same code but just flip the image vertically and use
viewForHeaderInSection
on the first section (0).