为 UIWebView 和 UITextView 添加阴影

发布于 2024-08-27 01:26:45 字数 101 浏览 8 评论 0原文

我有一个并排的 UITextView 和 WebView,我想为两者添加阴影。这是一个 iPad 应用程序,因此它们会旋转,因此它们下面的 ImageView 可能无法工作。有什么想法吗?

I have a UITextView and a WebView side by side and I would like to add a drop shadow to both. This is an iPad app, so they rotate, thus an ImageView under them probably would not work. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

冷情 2024-09-03 01:26:45

UIViews 有 CALayers,它有一些内置的阴影支持。尝试一下这些属性:

view.layer.shadowColor
view.layer.shadowOffset
view.layer.shadowOpacity
view.layer.shadowRadius

这可能会很快满足您的需要。您可能需要 #import让编译器了解发生了什么。

UIViews have CALayers, that have some built-in shadow support. Try these properties out:

view.layer.shadowColor
view.layer.shadowOffset
view.layer.shadowOpacity
view.layer.shadowRadius

That may get you what you need pretty quickly. You might need to #import <QuartzCore/QuartzCore.h> to get the compiler to understand what's going on.

琉璃繁缕 2024-09-03 01:26:45

解决方案就像这样,

[myTextBox.layer setShadowColor:[[UIColor blackColor] CGColor]];
[myTextBox.layer setShadowOffset:CGSizeMake(1.0, 1.0)];
[myTextBox.layer setShadowOpacity:1.0];
[myTextBox.layer setShadowRadius:0.3];

但这仅适用于 OS 3.2 及更高版本。

the solution would be like

[myTextBox.layer setShadowColor:[[UIColor blackColor] CGColor]];
[myTextBox.layer setShadowOffset:CGSizeMake(1.0, 1.0)];
[myTextBox.layer setShadowOpacity:1.0];
[myTextBox.layer setShadowRadius:0.3];

but this just works for OS 3.2 and up.

大姐,你呐 2024-09-03 01:26:45

这是快速版本:

func applyDropShadow() {
    textView.layer.shadowColor = UIColor.blackColor().CGColor
    textView.layer.shadowOffset = CGSizeMake(3, 3)
    textView.layer.shadowOpacity = 0.7
    textView.layer.shadowRadius = 8.0
    textView.clipsToBounds = false

}

Here is swift version:

func applyDropShadow() {
    textView.layer.shadowColor = UIColor.blackColor().CGColor
    textView.layer.shadowOffset = CGSizeMake(3, 3)
    textView.layer.shadowOpacity = 0.7
    textView.layer.shadowRadius = 8.0
    textView.clipsToBounds = false

}
ゞ花落谁相伴 2024-09-03 01:26:45

我会添加一个位于文本字段后面的视图,并对其应用阴影效果。这样阴影就不会随着内容移动。

I would add a view that sits behind the text field, and apply the shadow effects to that. This way the shadow does not move with the content.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文