Giter VIP home page Giter VIP logo

Comments (5)

jpros avatar jpros commented on September 28, 2024 3

I ended up using ReactiveObjc and the new Photos framework to achieve a better performance.

The new Photos framework gives me the photos ordered by date latest first, and the ReactiveObjC gives me the ability to add the photos in batches, and not load all of them to only then show to the user.

I've also added video browsing through DBCamera.

I'll clean up the code, and I should submit it soon.

from dbcamera.

thelordy avatar thelordy commented on September 28, 2024 1

I'm facing the same problem on iOS 10. It takes more than 12 seconds to load the photo library. Changing the line you suggested doesn't solve the problem.

from dbcamera.

donaldyang avatar donaldyang commented on September 28, 2024 1

@thelordy I'm testing on iOS10 .The code i changed make the camera init faster when i push the DBCameraContainerViewController.But it also use a long time when i touch right bottom 'show libaray button' to open the photo library show in GridView.

from dbcamera.

thelordy avatar thelordy commented on September 28, 2024 1

Ok guys, just fixed the issue. You have to make some changes on this files:

"DBLibraryManager.m":

  • On Line 86 ( before 'if ( group )') add:
    ALAssetsFilter *onlyPhotosFilter = [ALAssetsFilter allPhotos];
    [group setAssetsFilter:onlyPhotosFilter];

  • Replace Lines from 113 to 119 with:
    if ( result ) {
    [items addObject:result];
    assetResult = result;
    }

"DBCameraCollectionViewController.m":

  • Replace Lines from 74 to 78 with:
    ALAsset *asset = _items[indexPath.item];
    CGImageRef thumbnailImageRef = [asset thumbnail];
    UIImage *thumbnail = [UIImage imageWithCGImage:thumbnailImageRef];
    item.itemImage.image = thumbnail;

  • Replace Line 93 with:
    [_collectionControllerDelegate collectionView:collectionView itemURL:(NSURL *)[[asset defaultRepresentation] url]];

Hope to help someone else because this library is amazing!

from dbcamera.

thierrybucco avatar thierrybucco commented on September 28, 2024

Same problem for me.

from dbcamera.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.