Tagged Questions
0
votes
1answer
47 views
Handling selection and navigation in the same table view cell in iOS
I've a list of items in a table view, each of which display a small image and a name, as well as a disclosure indicator to navigate to a view with the item's details:
The behavior I want is to be ...
3
votes
1answer
62 views
Best way of editing rows and row details of a UITableView in iOS
I have a table view which may have several items (rows), which in turn have more information that I want to be displayed in another view by tapping the row (common scenario). The point is, I'd like to ...
1
vote
1answer
527 views
Multiple selection in an iOS picker view
The iOS SDK doesn't have a multiple selection picker view. However Safari's picker view allows multiple selection. Fortunately ALPickerView was created to allow multiple selection in a picker view. Is ...
0
votes
1answer
281 views
iOS Table View - How to divide/filter different data
I'm wondering what the preferred choice would be to divide/filter data in an iOS Table View. The two options I have thought of are:
Use sections in the Table View
Use a Segmented Control
I believe ...
1
vote
0answers
231 views
What is a dynamic alternative to UITableView? [closed]
Ok, so I have a normal viewController that has a UIScrollView in it that gives details about distilleries. What I wanted to do was have a list of spirits that are distilled at the distillery that they ...
1
vote
1answer
156 views
How can I design a UI for iOS with a diamond shaped drill down interface?
I have a basic drill down interface for iOS devices.
A -> B -> C -> D
The problem is that the following interface would work equally well:
A -> C -> B -> D
What I need is some kind of diamond ...
2
votes
1answer
521 views
iPhone button on screen with table view: last row or outside table?
I have a table view that's showing attributes of a record, very much like Edit Info screen in the iOS Contacts app.
Also like that screen, I'd like to show a "Delete Record" button at the bottom.
It ...