Create animation like 3D TableView - iphone

I want to create UITableView like Zime Android application.
I don't want code but want some advise that how can we create this type of UITableView in iPhone application.
Please suggest.

Not exactly what you want but may be a little better. Check this library named Scroller
You can customise it to have the effect you want instead of building from scratch.

Related

images in grid layout on iphone sdk

i want to display images in grid view like rows and columns.if i click the image should return a index value of image in the grid. i have no idea for this concept.if ur not understand my question i want like iPhone default photo gallery app viewing photos in a grid layout.!,i want to output like below screen shot and i am try to search but not found useful resource can any one help me with code or any tutorial links...!
Thanks...!
try out AQGridView (its like a Grid-Tableview)
AQGridView is an attempt to create something similar to NSCollectionView on the iPhone.
... ...
AQGridView is based around the programming model of UITableView and
its associated classes. To create this class I looked long and hard at
how UITableView does what it does, and attempted to replicate it as
closely as possible. This means that if you are familiar with table
view programming on the iPhone or iPad, you will find AQGridView
simple to pick up.
.. or you can try Three20
It provides both grid-view and fullscreen gallery.

Navigation based iPhone app using thumbnails

I've been searching the internet for quite some time and didn't find anything useful.
I want to make a basic app for the iPhone using simple views and hierarchical data nothing too fancy. The only problem is that I can't seem to find any tutorial that makes the first/main view like a thumbnail gallery that leads to other views.
To clear it a bit up:
I want my first view to be a 2D array of thumbnails and a little text below each of these thumbnails. When I click on a thumbnail it takes me to a sub-view containing more detailed info and options.
So is there any relatively painless way to make something like this using Table Views or something like that or do I have to make a custom view with methods to populate it as my heart pleases.
Please take note that I want to avoid any third party libraries like Three20 or similar.
Thanks
Just to make sure I understand, you want to make an application that acts similar to the Contacts on the iPhone? In other words, a list that when an item is clicked will take you to a new view with detailed information about the clicked item? But in your case, you want an image next to/above the text?
In either case, you will want to use a tableView. If you want an image beside the text, just set the imageView.image property of the cell to a corresponding image. If you want a different layout, however, you will need to create your own custom UITableViewCell, which is not a hard task at all. Here is a tutorial on how to create a custom cell using IB. It can also be done programmatically if you prefer to do it that way. I hope this helps to solve your problem.

iPhone SDK: Creating a menu

I'm developing a few arcade games. Unfortunately, all of them lack a menu. What's the best way to create a menu for an iPhone game?
I think you want a grouped style UITableView with a custom header/footer. You can also customize the UITableViewCell as well.
Check out this link, he creates the menu you are looking for fairly easily: http://iosdevelopertips.com/user-interface/creating-unique-looking-tables-with-custom-cells.html.
I would create a custom class that inherits from a UIView. Just make the UIView as big as the screen when you load it and bring it to the front. Then you can customize your screen and make it look good rather than boring and tasteless like the one above.

iPhone input textfield

Hi all
Im quite new to iPhone development, I see many applications using a form UI like
http://i.stack.imgur.com/znEex.png
first i thought it was a standard control from the UIKit, but after some searching it doesn't seem to be.
Im interested in knowing if theres an easy way to create this kind of label to the left and input field to the right kind of cell?
Im guessing this design is created with Table Views and each input is defined as a UITableViewCell.
I know i can just create a custom UITableViewCell, but i thought that since i see so many applications using this kind of input there must a standard control or an easy way of implementing it?.
There is no simple way than using custom UITableViewCell to create such UI widget.
and for user input you need to add either UITextView or UIFieldViewto your custom cell.
Basically, you will need a UIViewController as your base with a UIImageView and a UITableView.
There's also a lot of subclassing you would need to do to get it fairly the same.

iphone, tableView and appStore application

I want to create an application excacly like appStore.
A nice table (I have the source code from apple using custom table cell)
But my main problem is that I cannot find a nice tutorial or a guide on how to make the product detail page.
I want to have a label at the top then a text and after that I want to have the images.
I notice that in appStore when you reach the images it locks there for a while!
How can I do that???
I tried using a UIScrollView but I believe this is not the case.
I am thinking using tableView again with custom cells but again I am not sure.
Any ideas? or any good working example? or tutorial?
thanks for your time :)
start from here:
http://blog.webscale.co.in/?p=284
Which will teach you basic table design skills and how to create custom cells with images on the left.
Then if you would like to learn how to create a tab bar application an be able to have a navigation controller at the top then you can follow this descriptive tutorial step by step to achieve this.
http://www.devx.com/wireless/Article/44897
What do you get after following these two tutorials?
the appStore application, well not exactly but you will get your own version.
EDIT: Added Details page how to achieve appStore like UIScrollView effect.
follow this brilliant video tutorial.
http://blog.sallarp.com/iphone-ipad-appstore-like-uiscrollview-with-paging-and-preview/
Have fun
PK
Then