Skip to content

Instantly share code, notes, and snippets.

@amichnia
Created April 19, 2019 12:59
Show Gist options
  • Save amichnia/3e80a133ed1bac3d222f8ae3699ee91e to your computer and use it in GitHub Desktop.
Save amichnia/3e80a133ed1bac3d222f8ae3699ee91e to your computer and use it in GitHub Desktop.
// MainSDK
public class NumberInspector {
public weak var delegate: NumberInspectorDelegate?
// ...
public func inspect(number: Int) {
// perform inspection and notify delegate when done
}
}
public protocol NumberInspectorDelegate: class {
func didFinishInspecting(number: Int, foundFeatures: [String])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment