因为要写原生插件,swift 刚接触,语法比 objc 好看多了。
在开发相机组件时遇到一个问题,AVCapturePhotoCaptureDelegate 契约用自定义 UIView/UIViewController 实现没问题, 换成独立的类实现就回调不了,不是什么原因。
上代码:
import Foundation
import AVFoundation
import UIKit
public typealias TakePhotoCallback = ((String, String) -> Void)?;
class TakePhotoWithCompletion : NSObject, AVCapturePhotoCaptureDelegate {
// ...
var completion: TakePhotoCallback;
init(callback: TakePhotoCallback) {
self.completion = callback;
super.init();
}
func photoOutput(_ output: AVCapturePhotoOutput, didFinishProcessingPhoto photo: AVCapturePhoto, error: Error?) {
// todo sth
self.completion!("{file path}", "{error}");
}
}
import AVFoundation
import UIKit
class CameraxView: UIView {
// ...
@objc
func takePhoto(options: Dictionary<String, String>, completion: TakePhotoCallback) {
let photoSettings = AVCapturePhotoSettings.init(format:[AVVideoCodecKey:AVVideoCodecType.jpeg])
let delegate = TakePhotoWithCompletion.init(callback: completion)
imageOutPut?.capturePhoto(with:photoSettings, delegate: delegate)
}
// ...
}
import AVFoundation
import UIKit
class CameraxView: UIView, AVCapturePhotoCaptureDelegate {
// ...
var completion: TakePhotoCallback = nil;
@objc
func takePhoto(options: Dictionary<String, String>) {
let photoSettings = AVCapturePhotoSettings.init(format:[AVVideoCodecKey:AVVideoCodecType.jpeg])
self.completion = completion
imageOutPut?.capturePhoto(with:photoSettings, delegate: self)
}
@objc
func photoOutput(_ output: AVCapturePhotoOutput, didFinishProcessingPhoto photo: AVCapturePhoto, error: Error?) {
// todo sth
self.completion!("{file path}", "{error}");
}
// ...
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.