Looking for class CIVibrance or a string "CIVibrance" or the method like CIFilter().vibrance() in swift. Looking at the docs some appear unavailable in swift but others are missing from Xcode. (iOS 13.4 Xcode 11.5)
https://developer.apple.com/documentation/coreimage/cifilter/3228429-vibrance https://developer.apple.com/documentation/coreimage/civibrance?language=occ
import UIKit
import CoreImage
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
func test() {
let ciFilter = CIFilter()
let ciVibrance = ciFilter.vibrance() // error
let ciVibrance2 = CIFilter.vibrance() // error
let ciVibrance3 = CIVibrance() // error
}
}