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!
Related
I was wondering if anyone have any idea how to work out something similar to Instagrams's feature that when you keep pressed a picture in a profile, it pops up until you release the screen. I have been looking around and haven't really found an answer. I was trying to work with popovers but they're not allowed in iphone and most of the alternatives use storyboards. Basically the difference from what im looking for and a popoverpresentation is that I want the new screen to cover most of the screen, not from it to come from the button itself, if that makes sense, while I have the screen pressed. So basically does anybody know how to do this in swift using no storyboards? Thank you!
Does anybody have an idea how the genre selection bubbles in Apple music were made? The movement seems to be done with UiKit Dynamics. I definitely see collision behaviors but can't seem to reproduce the fluidity of the drag movement and the gravity towards the center of the view. I tried using UIPushBehavior and UiSnapBehavior, but no luck.
I don't think that it was done with UIKit Dynamics, I think they was using SpriteKit.
I created a component that's can simulate similar physics
https://github.com/ProudOfZiggy/SIFloatingCollection_Swift
It is possible with UIKitDynamics as well, but can be done with SpriteKit as well which makes it much easier to implement, I have written a small component which give similar kind of effect in Objecti-C using SpriteKit. You can find it here, Its not exactly the same but its near and you can take same approach to create your own or polish it as well.
i have developed it using box2d and libGdx on android,, so using libGdx u can use my code logic for iOS also...
have a look at my project, hope it helps,
https://github.com/mohitKejriwal/Bubble-UI-Android
I want the user to be able to see the content from the back camera but I do not want them to be given the option of taking a picture of it. Is there a function that I can call to turn this feature off?
I have run into a similar situation. You will want to use AVFoundation to construct your own interface. Your question was not nearly specific enough, so I'll give you my assumption of your situation: you are trying to hide the UIImagePicker button so the user cannot take a picture. UIImagePicker does not offer much in the way of customization, so AVFoundation will be your best bet. Check out this tutorial from Jameson Quave and it should help you understand what direction to be headed in. Cheers!
i am new corona sdk and interest to work in corona sdk. i didn't know to create a cover flow like the Images in below. any one me help to like that
thank you
Given where you are right now, your question is too complex to be answered in a single StackOverflow answer. I will instead give you the high-level steps you need to follow.
Start by learning the Lua language, if you don't know it already. Programming in Lua is a good free resource.
The next step is learning how to put an image on the screen with Corona.
Then learn how to put several images on the screen with Corona.
Then learn how to make them "scroll left and right", using the finger.
You will also want to learn how to make each picture "react" to a touch event.
Finally, learn how to "add perspective" to an image, so you can do the effects on the side.
And then you will have a working cover flow.
Try each step separatedly. If you get stuck in one step, open a new question for it. For example, if you get stuck on step 3, create a question similar to this one:
How do I scroll left/right a gallery of images in Corona SDK?
I'm trying to create a cover flow in Corona SDK. I'm stuck trying to
make images scroll left and right. I have tried this code [put code
here] but it doesn't work because instead I see [what you see]. I
would like it to [what you want it to do instead]
Good luck!
I need to create a list of words then have the words cycle through in a slot machine effect when swiped from top to bottom.
the only issues I'm having problems figuring out is the scrolling text part. UIPICKERVIEW doesn't cycle around (plus I need to only show one option at a time). I've hunted for examples and/or tutorials regarding this but haven't found anything that points me in the right direct.
Anyone know of a tutorial or have suggestions where I can get started or further my research? thanks.
You could use iCarousel for this:
https://github.com/nicklockwood/iCarousel
Run the Basic iOS Demo and select the Cylinder carousel type in vertical orientation with wrap on. If that looks like what you want, the documentation will explain how you can set it up in your project.