How to make swift listView roulette animation [closed] - ios

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
Good day! I am trying to implement such animation feature. Maybe you saw something like this. List view with cells that behave like roulette. I know how to resize cells in collection view while scrolling, but i need that some cells go under another.
Please help, if you know some tutorials or give a hint which methods should i use.
Image

You could do this yourself with a custom UICollectionViewLayout, but I find those very confusing.
I've used a framework called iCarousel in the past:
https://github.com/nicklockwood/iCarousel
It's very well done, although it's fairly old and it looks like it hasn't been maintained.

Related

Is there is any component or pod that makes the same scrolling tabs in the video? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
Is there is any component or pod that makes the same or near scrolling tabs in the video?
I've searched a lot but all I find was for the tabbar.
You're grateful if you suggest keywords that I can search with them.
This question will likely be closed for "Seeking recommendations for books, tools, software libraries, and more" ... however...
There are various ways to approach this. One would be:
create a custom view
use a bezier path on a CAShapeLayer to create the "appearance"
add a scroll view as a subview
put buttons in a horizontal stack view in the scroll view
When a button is tapped, scroll it to the center and take whatever other actions you desire (such as changing the information displayed in the center).
Pretty straightforward --- you just need to start working on it.

Swift alternative for android library [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
is there any swift alternate for the library (https://github.com/amarjain07/StickyScrollView) ?
i wanted to do same thing using tableview as my first cell will be collection view containing icarosel, second view will be fixed on top and then other cells of tableview will scroll inside to it.
Why you want to use a custom library when the UITableView has built-in support for it. The section header view can be made to stick like this.
Check out this tutorial which explains the same stuff with a simple example.

Vertical Tab Bar in Swift [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'am pretty new on iOS. Now i work on app for iPad that need a vertical tab bar. I already looking around and found some tutorial and library. But it's already deprecated and get last update around 3-4 years ago. The tab bar that i want is something that will keep in place when i push or present another viewController, just like navigation controller does. Is there any trick or ready to use library for vertical tab bar? Thanks for the help.
There is another library not sure if you already seen it or not. But you might wanna check out https://www.cocoacontrols.com/controls/cksidebarcontroller
Hope it fulfill the requirement.

How I can achieve this design using UITableView [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Hi,
Can anybody have any sample code to create this view using UITableView in iOS.
Please help me out.
I would use a UICollectionView as it is more flexible and allows you to customise almost every part of it and also how the cells are arranged etc. To create the timetable/calendar layout you will need to create a custom FlowLayout.
There are libraries that do this exactly for you. This one, with some tweaking for your design, creates a calendar style collectionView :
https://github.com/erichoracek/MSCollectionViewCalendarLayout
Hope this gives you a start.

Buttons in a circle path animation [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have followed this tutorial -> Align buttons in a Circle
Now i want to animate these buttons in a smooth way, Anyone can suggest me possible type of animations i can do here.?
If you guys already worked with any libraries which does this kind of animation, please suggest me.
here my view, i want to these english letter, at the time of displaying this subview.
Following is the library code for the what you want to develop.
ALRadial
QuadCurveMenu
KYCircleMenu
ASRadial
LIVBubbleMenu-iOS
May this help lot.

Resources