我的应用程序“ AR Note”快要完成了。 我只需要修复一个错误。
我有一个带有7个按钮的主菜单,这些按钮链接到视图控制器。要返回主菜单,请使用
@IBAction func unwindFromSources(segue: UIStoryboardSegue){
}
在我的旧版本中,这很好用。我所更改的只是主菜单的背景是模糊的相机视图,效果很好。现在,有了这种模糊的相机视图背景,该应用程序始终会由于线程1崩溃:信号SIGABRT!在我看来,这很尴尬,因为它说没有错误,并且在没有模糊的摄像机视图背景的情况下,后退按钮也可以正常工作。
这是我的主菜单代码:
import UIKit
import AVFoundation
class ViewControllerBlurrHome: UIViewController {
@IBAction func unwindFromSources(segue: UIStoryboardSegue){
}
let session: AVCaptureSession = AVCaptureSession()
override func viewDidLoad() {
super.viewDidLoad()
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
session.sessionPreset = AVCaptureSession.Preset.high
if let device = AVCaptureDevice.default(for: AVMediaType.video) {
do {
try session.addInput(AVCaptureDeviceInput(device: device))
} catch {
print(error.localizedDescription)
}
let previewLayer = AVCaptureVideoPreviewLayer(session: session)
self.view.layer.insertSublayer(previewLayer,at:0)
previewLayer.frame = self.view.layer.bounds
}
session.startRunning()
let blur = UIBlurEffect(style: .regular)
let blurView = UIVisualEffectView(effect: blur)
blurView.frame = self.view.bounds
blurView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
self.view.insertSubview(blurView,at:1)
}
// ShareButton
@IBAction func sharePressed(_ sender: Any) {
let activityVC = UIActivityViewController(activityItems: ["enter App Link here"], applicationActivities: nil)
activityVC.popoverPresentationController?.sourceView = self.view
self.present(activityVC, animated: true, completion: nil)
}
}
这是我的主菜单的样子:
这是我的main.storyboard的样子:
这是我使用后退按钮的方式:
这是另一种viewcontroller.swift
,没有模糊内容,效果很好:
import UIKit
class ViewControllerBasis: UIViewController {
@IBAction func unwindFromSources(segue: UIStoryboardSegue){
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func sharePressed(_ sender: Any) {
let activityVC = UIActivityViewController(activityItems: ["enter App Link here"], applicationActivities: nil)
activityVC.popoverPresentationController?.sourceView = self.view
self.present(activityVC, animated: true, completion: nil)
}
你是这个意思吗?
有这个:
这:
答案 0 :(得分:1)
这很可能是由于您将AV代码放在viewWillAppear
内而导致的。每次您进入视图时都会执行此方法(在您的情况下是应用程序启动时以及用户返回主菜单时)。
此行绝对不应该多次执行:
try session.addInput(AVCaptureDeviceInput(device: device))
还有一个:
session.startRunning()
这:
self.view.insertSubview(blurView,at:1)
一个快速的解决方法是将所有这些逻辑放入一个专用函数中,并添加一个标志以仅运行一次。像这样:
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
addBlur()
}
var didAddBlur = false
func addBlur() {
if didAddBlur {
return
}
didAddBlur = true
//Your code
}