iOS blur effect to ImageView with Swift(使用 Swift 对 ImageView 的 iOS 模糊效果)
问题描述
我正在尝试制作简单的 iOS 应用程序.我需要制作具有模糊效果的图像视图.我在 Stack Overflow 上找到了这段代码:
I am trying to make simple iOS app. I need to make image view with blur effect. I found this code on Stack Overflow:
class BlurImageView: UIImageView {
override func awakeFromNib() {
super.awakeFromNib()
}
required init(coder aDecoder: NSCoder!){
super.init(coder: aDecoder)
var blur:UIBlurEffect = UIBlurEffect(style: UIBlurEffectStyle.Light)
var effectView:UIVisualEffectView = UIVisualEffectView (effect: blur)
effectView.frame = frame
addSubview(effectView)
}
}
我需要将这个类连接到我的 image_view
,但我不知道该怎么做.我尝试在 ViewController
的 view_did_load
函数中执行此操作(image_view
是一个出口)
And I need to connect this class to my image_view
, but I don't know how to do it.
I try to do it in my view_did_load
function in my ViewController
(image_view
is a outlet)
override func viewDidLoad() {
super.viewDidLoad()
image_view = BlurImageView()
}
但是 NSCoder
是必需的……它是什么?也许我的方式是错误的方式?
but NSCoder
required... What is it? maybe my way is a wrong way?
推荐答案
你需要让你的 image_view
成为 BlurImageView
的一个实例,所以在你的视图控制器和你的image_view
是一个 outlet,你需要让它成为 BlurImageView
的实例,而不是 UIImageView
的实例.
You need to make your image_view
an instance of BlurImageView
, so in your view controller and where your image_view
is an outlet, you need to make it an instance of BlurImageView
and not an instance of an UIImageView
.
这篇关于使用 Swift 对 ImageView 的 iOS 模糊效果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Swift 对 ImageView 的 iOS 模糊效果
基础教程推荐
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01