Hey guys just wondering if anybody could help me,
I have a simple magazine app where the images are loaded from an array into a image view.
On the ibooks app there is a button which will take you to a type of overview with all the pages deconstructed as buttons where you choose the page. They are like 3 pages accross and then down. Is this just a table view or somethin different im confused?
Cheers
A table view can only have one column, so probably not that.
Without seeing it, they could have just placed an array of UIImageView or UIButton objects on screen or maybe if you want a longer list you can place them into a UIScrollView
Related
There is this set of button/options when you're creating a new tweet that I am trying to replicate in my iPhone app. I have encountered a few obstacles. One, I don't know exactly what the developers at Twitter put inside of the UITableViewCell in order to get the buttons evenly spaced inside of the cell. Two, I'm interested in how they created that little up arrow inside the same cell that you choose your options from. Lastly, how did they create the swiping motion between views inside of the bottom cell when a user clicks between the first and second option. It looks like this:
I really like the way that this looks, and it would work perfectly for my app. I just don't even know where to start with building this beyond setting up the cell. Does anyone have a library or insight that they have and are willing to share?
When we were looking to do something very similar, I found this extremely helpful site: How does the Twitter iPhone app implement side swiping on a table?
Perhaps this can help you out in your endeavors.
I am trying to develop an application whose view closely matches with groupon app. User should be able to swipe on the screen and the entire screen changes with top pointer pointing to different tool bar entity.
Any pointer of how to go about it?
Take a look at UIScrollView Reference and PageControl Reference from Apple Guides
Hope it helps,
Mário
Looks like a pagecontrol+scrollerview
The complex part is making the toolbar elements move when you are changing the page at a different speed
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.
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.
i am a student and also new to iphone SDK.i want to do xml parsing which has image URL and Data,it is a XML file about news.i have to show it .can i use table view or navigation controller? which is the best way?i have to show images and titles in first page.when i click it,it shows other page to show full news with image. is there any tutorial for what i need?
Table View and Navigation controllers are two entirely different things. It's like asking whether you should use a hammer or a nail to hang something. You could use both. YOu could also use a screw and a screwdriver, or any number of other ways to hang something on the wall.
A Navigation controller allows you to move around in a view heirarchy. See the Apple Contacts app to see how you can move around. Now, if you want to have a list of items, then you could use TableView to make a table of items. You don't have to have a UITableView inside a Navigation controller view. Or you may want to.
I would start at Apple's Creating iPhone Apps, and then go look at the Stanford's online course, and this one, among countless others.
You have chosen to bite off quite a big chunk with your first project.