coobjc 使用笔记

 

+ (COPromise *)getAlbumLastPhoto {

    COPromise *promise = [COPromise promise];

    //读取图片资源

    PHAsset *asset = [YHPhotoHandleManager latestAsset];

    [YHPhotoHandleManager getPhotoWithAsset:asset photoWidth:125 completion:^(UIImage *photo, NSDictionary *info, BOOL isDegraded) {

        if (photo) {

            [promise fulfill:photo];

        } else {

            [promise fulfill:nil];

        }

    } progressHandler:nil networkAccessAllowed:YES];

    return promise;

}

调用:

    co_launch(^{

        // 获取系统最近的一张照片

        id result = await([YHPhotoHandleManager getAlbumLastPhoto]);

        if (result) {

        }

    });

 

 

 

上一篇:vue-photo-preview插件实现点击图片放大组件


下一篇:计组的一些photo