Documentation Archive Developer
Search

IntentsUI Changes for Swift

IntentsUI

Declaration
From
protocol INUIHostedViewControlling : NSObjectProtocol {
    func configure(with interaction: INInteraction!, context context: INUIHostedViewContext, completion completion: (@escaping (CGSize) -> Swift.Void)!)
}
To
protocol INUIHostedViewControlling : NSObjectProtocol {
    func configure(with interaction: INInteraction!, context context: INUIHostedViewContext, completion completion: ((CGSize) -> Swift.Void)!)
}

Declaration
From
func configure(with interaction: INInteraction!, context context: INUIHostedViewContext, completion completion: (@escaping (CGSize) -> Swift.Void)!)
To
func configure(with interaction: INInteraction!, context context: INUIHostedViewContext, completion completion: ((CGSize) -> Swift.Void)!)