How can I create an iBook-style user interface? [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I was working on storing some books or pdf in a shelf. Can i get some tutorial or code which helps in making Apple iBooks kind of a user interface. How can i implement this one?
Here is screenshot of what I mean:

What you want to do is a recreation of UITableView that can handle multiple columns per row.
You do this by subclassing UIScrollView and write allot of code.
I have done one such implementation called CWColumnTableView, with support for animations, drag-n-drop reordering and more. It's available under BSD-license here: https://github.com/Jayway/CWUIKit
The project also has an example application. Basically it works just as UITableView, you just provide your cells, and optionally a background and/or row backgrounds.

Related

How are magazine like layouts made? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How are layouts like this actually done:
What is exactly used here, it's really interesting how dynamic flow those layouts have.
My question is - how do I create one like these using existing Cocoa touch technologies?
You can achieve this by Grid based layout.
For iOS Grid Based Layouts can be build with UICollectionView >
The UICollectionView class brings the ability to natively create grid-based layouts to the iOS SDK. This is an incredibly useful class, especially on the iPad where displaying rows and columns of views is common.
Grids are Good for fluidic page layouts.
read further
Actually I don't know how Auto Layout System in Cocoa works, but there must be an approach to achieve it through an easy way.

GPU Image Filter [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
In my app, I want to apply different video filters like: Fade in -Out,Snow fall,Rainbow,Fast Motion,Slow Motion,etc.
I study the Brad Larson project but it does not full fill my all filter requirement.
so, Help me!!
If you need custom filters you can always write them and add to GPUImage project. Just grab some easy filter like GPUImageRGBFilter or GPUImageLineGenerator and experiment.
You can also modify OpenGL calls directly to inject your custom effects in front of a movie. Take a look at CubeExample.

Combobox Image for the iPhone [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to create simple combo box for my app. I've read the following question: Add UIPickerView & a Button in Action sheet - How?
Do you have links for a nice image that I can put on the button that acts like a combobox? I searched the web with no luck, so whoever uses my app doesn't know that this button is actually a combobox.
Thanks.
Here's link to some nice iphone kit images:
iOS 5 GUI PSD (iPhone 4S)
If you can't find it there, do what we all do, either design the images yourself or hire a designer :)

How to show eight images in a table, three images in each row in iphone? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am in big trouble. Now I am going to explain to you about my problem.
I want to show eight images in a table where three images in a row.
Please give me some clue......
You could use a framework that will handle all that for you.
One option you have is Three20, another is AQGridView.
Three20 has go a TTPhotoViewController specifically aimed at implementing a multicolumn table filled with photos.
If you are not interested to all that Three20 has to offer, I would suggest going for AQGridView, anyway.

word search puzzle [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Can anyone tell me how to create word search puzzle....
Any ideas where should I start?
The basic idea should eventually be an app that links to a database. Your app should get random words out of that database, and fill it in a table with multiple rows and heights. After a few words, let the app fill the remaining empty table cells with random letters. All this can be checked using arrays.
Last, program you app to check how the user slides or touches the screen, and let the app react accordingly.
That should be the idea of the app.
Probably do a lot of reading up on it first!
http://www.smashingmagazine.com/2009/08/11/how-to-create-your-first-iphone-application/
there?