ECSlidingDrawer theming and animation - iphone

so I have an app and I have a sliding drawer on the left that can be pulled out/revealed by a button tap or a gesture. It looks like this.
I wanted to animate the drawer so it had a folding animation kind of similar to this.
I have looked around the internet extensively and didn't find anything.
Does anyone know whether this is possible? Thanks.

The following article describes the folding animation using CATransfromLayer. I think this might help.
http://markpospesel.wordpress.com/tag/catransformlayer/

Related

Drag a container vertically up and down to a certain level flutter

I am new to gestures and I don't get any proper solution for achieving my request,
Can anyone help me in dragging a container up and down vertically to a certain point?.
I need to achieve something like the below image.
Thanks in advance.
Consider using draggable home if you want a ready-made similar effect.
If you want to replicate the goggle maps UI one-on-one, consider reading DraggableScrollableSheet and make one your own.
Hope it helps!

Panning around center view in iOS

This is a bit of a continuation of my last question, but I'm at a loss as to how I should approach this. I have a center view that is dynamic and changed via three options panels. An example of this is shown here:
http://i.imgur.com/um9tr5X.gif
I realize that I should be using the Pan Gesture to move it around, but I'm new to xCode and a bit lost with how to add the momentum and snap to the views. I considered using paging in a scrollview to achieve the effect, but I'm not sure I'll be able to do that.
I would really appreciate a bit of a kickstart in the direction I should be going.
Thanks.
You can search for open source control which other developers has developed if you are new to xcode.
Try this one:
https://github.com/MarcoSero/MSMatrixController
This is something similar to what you want. You will need little modification here to achieve your desired look.
Thanks!

Buttons that move on screen

I want to have multiple buttons on the screen that continuously move. When they touch the sides, they should bounce back. How do i do this? Any helpful links? Ideas? Thanks!
you go through the apple animation document.
Introduction to Core Animation Programming Guide
Check the following SO post.
How to move several buttons throughout the screen
Move a button in the screen
Also have a look at cocos2d which i think may make it easier to do something like this if they have to constantly be moving.
cocos2d is a game platform which has physics etc but also i believe has support for buttons so it should not be hard to achieve something like this. Check out the cocos2d website and documentation.

slideshow using touch sequence for the next image

in xcode just doing the transition. set of image in the nsarray,like slide show. have to change the image using transition for right to left using touch
I think you have to describe your question briefly.You can use Page control for that.It may be more useful to you.
You can get sample code in below link "http://developer.apple.com/library/ios/#samplecode/PageControl/Introduction/Intro.html"
use the leftswiping gestures and right swiping gestures.

Overlay library for iOS?

there's an open-source library generating nice overlays for iPhone/iPad, but I don't find it any more... Does anyone know which one I mean?
EDIT: I'm looking for a gray, semi-transparent overlay view e.g. in the middle of the screen. I'd like to show information there while scrolling happens. As soon as scrolling ends, the overlay would disappear.
Maybe you are talking about MBProgressHUD?
https://github.com/jdg/MBProgressHUD
I use ATMHud. It looks like this.