Code Monkey home page Code Monkey logo

Comments (5)

RSully avatar RSully commented on August 28, 2024

My comment from prior discussion


I've created a branch for testing push/pop of the color picker within a UINavigationController

git fetch
git checkout enhance-nav_controller

Branch: https://github.com/RSully/RSColorPicker/tree/enhance-nav_controller
Comparison: master...enhance-nav_controller

This has been merged into #26

This has been merged into master


@stuartjmoore I agree the issue is likely generating the initial bitmap. I am still interested in keeping it resizable (though I'm not sure how often that would actually be used - right now probably never considering how slow it would be).

Time profiler:

screen shot 2013-07-14 at 12 21 02 pm

Each of those purple spikes is pushing another view controller.


A few ideas are going through my head:

  • Generate the bitmap off of the main thread (GCD comes to mind)
  • Cache the bitmap on each init based on the size

Combining these ideas yields an interesting approach. Perhaps you would call something like this when the app launches:

[RSColorPickerView prepareForSize:CGSizeMake(256.0, 256.0)];

This could generate that bitmap in the background and then whenever initialized with that size loading would be near-instant.

The downside of course is that these bitmaps would sit in RAM even if the user never needs a color picker.


Edit:

Another time profiler without "Show Obj-C Only":

screen shot 2013-07-14 at 12 36 34 pm

from rscolorpicker.

RSully avatar RSully commented on August 28, 2024

I've created #28 after someone mentioned the Accelerate.framework to me. This might be the first step in solving these performance issues. If anyone has any experience or input on which direction to head in, let me know.

from rscolorpicker.

RSully avatar RSully commented on August 28, 2024

Wow, well it has been a long week. Besides getting my feet wet with CocoaPods and merging in some contributions, #28 is a huge overhaul.

A brief rundown (work in progress of release notes):

  • Most trig code has been converted to Accelerate.framework
  • HSV to RGB conversion is done manually (UIColor was too slow)
  • Bitmaps are cached when generated
  • Added -prepareForDiameter class method to preemptively create a cached bitmap (computed in background)
  • Addressed bug that would inadvertently disable animations

Some possible issues:

Even more importantly, out of all of the changes made, which ones might not be great ideas? There are a lot of changes in that branch.

from rscolorpicker.

RSully avatar RSully commented on August 28, 2024

Regarding

What happens if a color picker is created while -prepareForDiameter is calculating?

I have changed the implementation to use NSCache (thread-safe) and NSOperations. It should be handled correctly now.

Should bitmaps always cache by default?

I'm still on the fence about this. I'm using NSCache now so even if they did cache by default it shouldn't be a huge burden. However, I have not been able to get it to evict an object (in the simulator) so I still want to do some more on-device testing.

from rscolorpicker.

RSully avatar RSully commented on August 28, 2024

I think it is safe to close this now. I just released v0.8.0 that includes many performance updates. If anyone has any issues please feel free to create a new issue and we can continue this discussion.

from rscolorpicker.

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.