session-ios/Signal/src/ViewControllers/AttachmentSharing.h

16 lines
298 B
C
Raw Normal View History

2017-02-16 23:59:40 +01:00
//
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
//
@class TSAttachmentStream;
@interface AttachmentSharing : NSObject
+ (void)showShareUIForAttachment:(TSAttachmentStream *)stream;
+ (void)showShareUIForURL:(NSURL *)url;
2017-10-10 22:13:54 +02:00
+ (void)showShareUIForText:(NSString *)text;
2017-02-16 23:59:40 +01:00
@end