mattermost-mobile/ios/Mattermost/UIPasteboard+GetImageInfo.h
Elias Nahum ee2a25df84
Fix iOS crash when pasting large images and included other file types (#3424)
* Fix iOS crash when pasting large images and included other file types

* Rename pasteImages to pasteFiles and fix copying heic images

* remove comment

* Feedback review
2019-10-24 20:41:38 +03:00

19 lines
315 B
Objective-C

//
// UIPasteboard+GetImageInfo.h
// Mattermost
//
// Created by Tek Min Ewe on 05/08/2019.
// Copyright © 2019 Facebook. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface UIPasteboard (GetImageInfo)
-(NSArray<NSDictionary *> *)getCopiedFiles;
@end
NS_ASSUME_NONNULL_END