亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS 關于獲取沙盒文件的一些總結

發布時間:2020-06-09 20:42:01 來源:網絡 閱讀:1615 作者:zql5666641 欄目:移動開發
最近干活要用到操作本地沙盒的文件的一些東西,總結一下 包活圖片和視頻
獲取document文件夾的文件列表
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
 NSString *plantId = [[DSPKeychainServiceManager sharedManager] getPlantId];
        
//并給文件起個文件名
NSString *p_w_picpathDir = [[[paths objectAtIndex:0] stringByAppendingPathComponent:@"SMSPictures"] stringByAppendingPathComponent:plantId];
[[NSFileManager defaultManager] createDirectoryAtPath:p_w_picpathDir withIntermediateDirectories:YES attributes:nil error:nil];
// 獲取圖片列表
NSError *error_img;
NSArray *fileList_img = [[NSArray alloc] init];
//fileList_img便是包含有該文件夾下所有文件的文件名及文件夾名的數組
fileList_img = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:p_w_picpathDir error:&error_img];
        
NSMutableArray *dirArray_img = [[NSMutableArray alloc] init];
BOOL isDir_img = NO;
//在上面那段程序中獲得的fileList中列出文件夾名
for (NSString *file in fileList_img) {
     NSString *path = [p_w_picpathDir stringByAppendingPathComponent:file];
    [[NSFileManager defaultManager] fileExistsAtPath:path isDirectory:(&isDir_img)];
    if (!isDir_img) {
          [dirArray_img addObject:file];
    }
}
獲取視頻的縮略圖------->(從別家大牛那里轉來的)
原文地址:http://blog.sina.com.cn/s/blog_6d01cce301019xym.html
第一種:
+(UIImage *)getImage:(NSString *)vi
deoURL
{
    AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[NSURL fileURLWithPath:videoURL] options:nil];
    AVAssetImageGenerator *gen = [[AVAssetImageGenerator alloc] initWithAsset:asset];
    gen.appliesPreferredTrackTransform = YES;
    CMTime time = CMTimeMakeWithSeconds(0.0, 600);
    NSError *error = nil;
    CMTime actualTime;    
    CGImageRef p_w_picpath = [gen copyCGImageAtTime:time actualTime:&actualTime error:&error];
    UIImage *thumb = [[UIImage alloc] initWithCGImage:p_w_picpath];
    CGImageRelease(p_w_picpath);
    return thumb;
}
第二種:
需要添加AVFoundation和CoreMedia.framework
MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc]initWithContentURL:videoURL]; 
moviePlayer.shouldAutoplay = NO;
UIImage *thumbnail = [moviePlayer thumbnailImageAtTime:time timeOption:MPMovieTimeOptionNearestKeyFrame];
下面這個也一樣
+(UIImage *)fFirstVideoFrame:(NSString *)path
{
    MPMoviePlayerController *mp = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:path]];
    UIImage *img = [mp thumbnailImageAtTime:0.0f timeOption:MPMovieTimeOptionNearestKeyFrame];
    return img;
}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

景东| 太原市| 平舆县| 保定市| 西和县| 平泉县| 堆龙德庆县| 株洲市| 陈巴尔虎旗| SHOW| 万盛区| 清流县| 新乐市| 万山特区| 徐汇区| 昂仁县| 万荣县| 泰宁县| 建宁县| 湖北省| 永定县| 沂南县| 雅安市| 浮山县| 行唐县| 凤庆县| 广州市| 新干县| 杭州市| 延边| 宣威市| 乐陵市| 邯郸市| 乌恰县| 临高县| 遂平县| 永和县| 临颍县| 库尔勒市| 呼玛县| 恩施市|