Tagged Questions
0
votes
0answers
79 views
Where should I delegate this UITableView to?
I'm building a scrollable grid layout in iOS.
The hierarchy is as follows:
(MyController) UITableViewController
- Parent Table View (UITableView)
- "Horizontal cell" (UITableViewCell)
- ...
0
votes
2answers
92 views
How to get custom NSManagedObject subclass from selected UITableViewCell
I have a UITableView in my app that displays some Location objects which I have created as part of a Core Data store. The UITableViewCell actually just displays the name of the Location (one of the ...
1
vote
0answers
86 views
save method and delegate in detailTableViewController fail in Xcode
I have a bug when I save information passed by a user in a detailTableViewController. Though when I force the debugger by pressing lecture, it carries on performing the coredata job, etc.
Here is my ...
3
votes
7answers
457 views
How does UITableViewCell communicate with its UITableView?
I am currently creating a custom grid view, which means that I am creating a class that has a lot in common with UITableView. One of the things that I want to get right is the communication of the ...
1
vote
1answer
140 views
UITableViewCell- controlling movement
When editing my UITableView, I give the option to move cells to reorder the data. However, The top two cells in the table are cells that give information about all of the cells in the table, and I ...
1
vote
1answer
2k views
iOS5 dynamically assign an action to an accessory button within UITableViewCell
I have one table view within the app that I hope multiple parts of the app would be able to use to post updates to the table view with possible actions that the user can take. One of the ways that I ...
0
votes
2answers
1k views
Calling UITableViews delegate methods directly
I was looking for a way to call the edit method directly.
- (void)tableView:(UITableView *)theTableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath ...
