zoukankan      html  css  js  c++  java
  • ios8中,相册创建后手动删除,不能再进行创建显示

    // Add a new ALAssetsGroup to the library.

    // The name of the ALAssetsGroup is name and the type is ALAssetsGroupAlbum.  The editable property of this ALAssetsGroup returns YES.

    // If name conflicts with another ALAssetsGroup with the same name, then the group is not created and the result block returns a nil group.

    // When the ALAssetsGroup is added, the user may be asked to confirm the application's access to the data.  If the user denies access to the application or if no application is allowed to access the data, the failure block will be called.

    // If the data is currently unavailable, the failure block will be called.

    [_library addAssetsGroupAlbumWithName:@"Test" resultBlock:^(ALAssetsGroup *group) {

    //手动删除相册后,返回的group为nil,从上面的注释文档可以得到,添加的相册名称发生冲突。

    } failureBlock:^(NSError *error) {

            NSLog(@"error : %@",error);

        }];

    可能的原因: iOS 8.0 之后, 相册新增了 Recently Deleted (最近删除) 这个功能,默认30天后自动删除照片, 可能我们删除的相册并没有完全删除, 导致创建相册虽然成功, 但却为 nil ,因为创建的相册还是处于 Recently Deleted 的状态;

    解决之道:

    (在 iOS 8.0 后, 使用the Photos framework 代替 the Assets Library framework , The Photos framework 提供更特色和更好的表现 在使用 photo library 工作的时候)

    苹果官方Photo Framework例子:

    https://developer.apple.com/devcenter/download.action?path=/wwdc_2014/wwdc_2014_sample_code/exampleappusingphotosframework.zip

    仔细挖掘下然后就能解决啦~

    iOS 8.0+ 使用Photos framework 创建相册代码

    [[PHPhotoLibrary sharedPhotoLibrary] performChanges:^
    {
      [PHAssetCollectionChangeRequest creationRequestForAssetCollectionWithTitle:@"Test"];
    } completionHandler:^(BOOL success, NSError *error) 
    {
      if (!success) {
        NSLog(@"Error creating album: %@", error);
      }
    }];
    提高技能如同提升自信心。
  • 相关阅读:
    cb快捷键
    N的阶乘的长度 V2(斯特林近似)
    最大子序列和(Max Sum ,Super Jumping! Jumping! Jumping! )
    关于莫比乌斯和莫比乌斯反演
    最少拦截系统
    set用法详解
    几种数学公式(环排列 母函数 唯一分解定理 卡特兰数 默慈金数 贝尔数 那罗延数)
    最小堆算法
    并查集算法
    dijkstra算法演示
  • 原文地址:https://www.cnblogs.com/chims-liu-touch/p/5307223.html
Copyright © 2011-2022 走看看