Page Control like in Reminders app iOS 7 - ios

Has anybody found something similar to ios7 Reminder PageView with same forces and behavior.
Mean this control.
Found something link - but it's not exact the same.
Look forward to somebody's help!

The best solution i have found - TGLStackedViewController
It provides same behaviour and uses the uidynamics library to attache views in a UICollectionView.

Related

How to implement tabs on iOS at the top that are swipe-able?

I'm developing an iOS app and I was wondering how to implement a design element. I've looked but there isn't a answer that I was completely looking for. Any help would be great. :)
If you don't want to build it from the scratch, then maybe you can take a look at this- https://github.com/HighBay/PageMenu

IOS Parallax and page view like Android ParallaxHeaderViewPager

I want to try like this link:https://www.youtube.com/watch?v=sCP-b0a1x5Y. I need Parallax efect and view pager.
Can someone help me with this?
Do have check at this library it seems to be answering your question and others who have similar requirements... It supports parallax view with pagercontrol like android for iOS.
Here's a link!

Photo Gallery like table iOS

I am in the process of designing an application that will look like the image below. I am wondering if there is anything out there that will help me create this style of a table. I have seen three20 and other sources. I already figured out how to load images from the website I need, using JSON, now I need to put it into that view style. . It looks like it may be a basic gallery layout, but I am not sure where the best place to start may be.
http://i.imgur.com/e50Uz.jpg
EDIT: Thanks guys, this ended up being quite helpful as well: http://www.scott-sherwood.com/ios-6-uicollectionviewcontroller/
Try to check UICollectionView https://developer.apple.com/library/ios/#documentation/WindowsViews/Conceptual/CollectionViewPGforIOS/Introduction/Introduction.html
Have a look at UICollectionView. It's perfect for that sort of thing.
Ask again with specific questions if you have them.
The new UICollectionView framework is made for things like this, and it's really easy to use. The only downside to using a collection view is that it's only available on iOS 6+, so if you want backwards compatibility, you might want to look into third-party open source frameworks.
Here's a great tutorial on UICollectionViews to help you get started.
http://www.adoptioncurve.net/archives/2012/09/a-simple-uicollectionview-tutorial.php

iPhone Share Button

How can I recreate this, something found throughout native iPhone apps such as Safari and Photos.
I'm assuming it is pretty simple, I just don't even know what it is called so I'm having trouble finding out how.
It is usually reached using an action (or export or something) button.
The same functionality is called as UIActionsheet. You can get plenty of examples for the same on SO itself.
you are looking for whats called a UIActionSheet
check this out for more info
http://developer.apple.com/library/ios/#documentation/uikit/reference/UIActionSheet_Class/Reference/Reference.html
you have to create action sheet https://github.com/gpambrozio/BlockAlertsAnd-ActionSheets

Styling the UIPopOverViewController

I've seen a few apps on the iPad recently adding a bit of design to the pop overs.
Does anyone have any pointers on how you would go about changing the pop overs design without writing your own?
I'm hoping to achieve something like the pop overs in iBook or Calcbot.
Cheers
I don't believe there is any way to really customize the UIPopoverController. You can write your own pretty easily though.

Resources