* 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
19 lines
315 B
Objective-C
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
|