Signal-iOS/SignalMessaging/attachments/ShareViewDelegate.swift
2021-01-21 20:00:29 -08:00

15 lines
413 B
Swift

//
// Copyright (c) 2021 Open Whisper Systems. All rights reserved.
//
import Foundation
// All Observer methods will be invoked from the main thread.
@objc
public protocol ShareViewDelegate: class {
func shareViewWasUnlocked()
func shareViewWasCompleted()
func shareViewWasCancelled()
func shareViewFailed(error: Error)
var shareViewNavigationController: OWSNavigationController? { get }
}