iOS shareExtension內(nèi)存超過120M限制總結(jié)

最近發(fā)現(xiàn)插件分享文件(文件或者視頻)超過120M時,插件崩潰,于是到處找辦法,哈哈,終于解決!??!

下面是分享代碼:

? ? ? ? ? ?//文件路徑

? ? ? ? ? ? NSString* filePath =@"";

? ? ? ? ? ? //獲取文件原始路徑

? ? ? ? ? ? NSRange fromRange = [fileURL.absoluteString rangeOfString:@"/var"];//文件路徑需要移除/var之前路徑

? ? ? ? ? ? NSString *fromPath = [fileURL.absoluteString substringFromIndex:fromRange.location].stringByRemovingPercentEncoding;

? ? ? ? ? ? //文件拷貝路徑

? ? ? ? ? ? NSString *decodeFilePath = [fileURL.absoluteString stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

? ? ? ? ? ? NSString *path = [APPDOCPATH stringByAppendingPathComponent:[decodeFilePath lastPathComponent]];

? ? ? ? ? ? if ([[NSFileManager defaultManager] fileExistsAtPath:path]) {

? ? ? ? ? ? ? ? filePath = path;

? ? ? ? ? ? }else{

? ? ? ? ? ? ? ? NSError*copyError;

? ? ? ? ? ? ? ? BOOLret = [[NSFileManager defaultManager] copyItemAtPath:fromPath toPath:path error:&Error];

? ? ? ? ? ? ? ? if(ret) {

? ? ? ? ? ? ? ? ? ? filePath = path;

? ? ? ? ? ? ? ? }else{

? ? ? ? ? ? ? ? ? ? if(copyError !=nil) {

? ? ? ? ? ? ? ? ? ? ? NSLog(@"復(fù)制出錯啦 = %@",copyError);

? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容