session-ios/SignalMessaging/attachments/AttachmentSharing.h
Michael Kirk eca19e5874 Reconcile MediaMessageView zoom behavior with AppExtension
Previously it was predicated on UIApplication.shared

// FREEBIE
2017-12-07 10:14:30 -05:00

16 lines
298 B
Objective-C

//
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
//
@class TSAttachmentStream;
@interface AttachmentSharing : NSObject
+ (void)showShareUIForAttachment:(TSAttachmentStream *)stream;
+ (void)showShareUIForURL:(NSURL *)url;
+ (void)showShareUIForText:(NSString *)text;
@end