2 optional 协议的写法是这样的
@objc protocol QISCaptureManagerDelegate : NSObjectProtocol {
@objc optional func didChangeAccessCameraState(isGranted:Bool);
@objc optional func didOutputDecodeStringValue(stringValue:NSString);
@objc optional func didDecodeUnmatchType(codeType:NSString);
}
3 iOS上用swift CGFloat和 Float的转换 如果用 Float(expression)这种方式是很烦人的,而且浪费时间
extension Int {
var f: CGFloat { return CGFloat(self) }
}
extension Float {
var f: CGFloat { return CGFloat(self) }
}
extension Double {
var f: CGFloat { return CGFloat(self) }
}
extension CGFloat {
var swf: Float { return Float(self) }
用以上的extension就世界清静许多。
3 dispatch queue 的写法也变了
DispatchQueue.global(qos: .background).async(execute: {
} )
DispatchQueue.main.async {
}
4 delegate检查
if self.delegate != nil && (self.delegate?.responds(to: #selector(QISCaptureManagerDelegate.didOutputDecodeStringValue(stringValue:))))!
{
self.delegate!.didOutputDecodeStringValue!(stringValue: stringValue)
}
}
原文链接:https://www.f2er.com/swift/322603.html