I want to create the circular seek bar.The thing is, that I need a circular progress bar, where I would be able to set some values. Because my progress fill is a rainbow like gradient and i also tried many other codes and I am not able to achieve the same results using those code.after R&D i found the following link and I have seen this
https://github.com/karthikkeyan/CircularSeek
but this is in swift. i need exactly this one functionality. but my application is in objective c. so how can i implement this in objective c.
anyone can please help me for this.
Thanks
All you need is a circular slider. Here are some libraries.
https://github.com/eliotfowler/EFCircularSlider
https://www.cocoacontrols.com/controls/tb_circularslider
https://www.cocoacontrols.com/controls/circleslider
Related
I'm trying to recreate the Shazam Discover UI by subclassing UICollectionView/UICollectionViewFlowLayout.
I've got as far as paging the cells and making them the right size, however, I'm having trouble getting the cells to scroll to the background, as in, I don't have a clue on how to get it done, I've searched everywhere but can't seem to find it.
An example of what I'm trying to achieve:
Any help/tips on how I could do this would be greatly appreciated.
edit: I ended up building my own solution:
https://github.com/JoniVR/VerticalCardSwiper
You could use third party libraries to achieve the same.
You may use StickyCollectionView. This is an Objective C based library. I believe this one with some customization will help you to approve this.
I want to implement in my app 2D "coverflow" like in this sketch:
Sketch
That you can swipe left or right to switch the category.
I'm looking for a framework or a tutorial for making it.
Does anybody know a framework/have an idea how to make it?
Thanks!
Would anyone mind pointing me in the right direction of making a card view just like the one in the image shown below? I've been scouring the internet for over an hour trying to find a tutorial (in Swift) and all I could find was making the illusion of separated cards like this and this.
Any help or input would be greatly appreciated!
It wouldn't be that hard to do this yourself with custom code.
You could also use either a UICollectionView. Getting the look you want with a collection view is doable but would require some customization.
Yet another option is a third party framework like iCarousel (by Nick Lockwoods) iCarousel is very flexible and powerful, and comes with tutorials demonstrating a number of different options.
I am developing a application.In the application i need bar graph .Please see the see below image
I want to develop such type of bar graph .i have done a lot of R&D but not find solution.Please Help me
Thanks
Dheerendra singh
Did you take a look at https://github.com/core-plot/core-plot? I used this once and was happy with its API.
By the way: why do you need multiple plots? The plot in your screenshot seems to be made of continuous data...
Core plot is best available Graph lib for achieving this kinda bar but you have to do some customisation by your self.
I'm moving the first passes with iOS programming. I want to make a progress bar circular, can someone tell me how to make it?
from my opinion thats quite a task for a beginner to handle.
I would try to deal with this issue like this:
Using core graphics to draw myself three circles: inner for data, outer for background and one in between for the loader itself. Then i would modify the loader circle to display the progress.
This should help you a lot: http://www.raywenderlich.com/33193/core-graphics-tutorial-arcs-and-paths
I would rather though use the docs: https://developer.apple.com/library/ios/documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/dq_paths/dq_paths.html#//apple_ref/doc/uid/TP30001066-CH211-SW1