Signal-iOS/SignalShareExtension/utils/ShareAppExtensionContext.h
2020-04-10 13:17:08 -03:00

20 lines
472 B
Objective-C

//
// Copyright (c) 2020 Open Whisper Systems. All rights reserved.
//
#import <SignalServiceKit/AppContext.h>
NS_ASSUME_NONNULL_BEGIN
// This is _NOT_ a singleton and will be instantiated each time that the SAE is used.
@interface ShareAppExtensionContext : NSObject <AppContext>
+ (instancetype)new NS_UNAVAILABLE;
- (instancetype)init NS_UNAVAILABLE;
- (instancetype)initWithRootViewController:(UIViewController *)rootViewController;
@end
NS_ASSUME_NONNULL_END