9
votes
4answers
4k views
How can I disable the UITableView selection highlighting?
When you tap a row in a UITableView, the row is highlighted and selected. Is it possible to disable this so tapping a row does nothing?
7
votes
6answers
1k views
How do I use a UIWebView in a Table Cell?
I'm building a table with some text that is HTML, so I am using a UIWebView as a subview of my custom table cells. I already ran into one problem - as I scrolled down in the table, it would take the …
7
votes
7answers
2k views
What’s the UITableView index magnifying glass character?
In Apple's iPhone apps (like Contacts), they have a nice magnifying glass icon at the top of the table view index. Since the table view index API is character-based, I assume that this magnifying …
6
votes
3answers
927 views
Remove white line next to reorder control on grouped UITableViewCell
I've built a custom UI for my table that has a darker UI and a custom accessoryView. When I put the table into editing mode, there is a white line to the left of the reorder control that I can't seem …
6
votes
6answers
6k views
How to customize the background color of a UITableViewCell?
I would like to customize the background (and maybe the border too) of all of the UITableViewCells within my UITableView. So far I have not been able to customize this stuff, so I have a bunch of …
6
votes
3answers
1k views
Is there a better way to determine the right size for a UITableViewCell?
I have a UITableView cell that is going to have a variable size depending on it's content (potentially several lines of text).
SInce it appears that heightForRowAtIndexPath is called before I layout …
5
votes
5answers
196 views
New to Core Data for iphone
I am new to the iphone platform and am creating an app that retrievals a rss feed and displays it in a UITableView. I have gotten this working perfectly (or rather, the way I wanted). What I was …
5
votes
3answers
2k views
How do I set UITableViewCellSelectionStyle property to some custom color?
I am developing an iPhone application, in my table view I wanted custom color for Cell Selection Style, I read the UITableViewCell Class Reference but there are only three constants defined for …
4
votes
2answers
319 views
Good strategies for REST -> XML -> Core Data -> UITableView?
What are good practices for asynchronously pulling large amounts of XML from a RESTful service into a Core Data store, and from this store, populating a UITableView on the fly?
I'm thinking of using …
4
votes
3answers
663 views
Tricks for improving iPhone UITableView scrolling performance?
I have a uitableview that loads fairly large images in each cell and the cell heights vary depending on the size of the image. Scrolling performance is decent, but can sometimes be jerky.
I found …
4
votes
4answers
1k views
Labels aligning in UITableViewCell
I use UITableView with cells created using UITableViewCellStyleSubtitle. Every cell's height is dynamically adjusted using the
- (CGFloat)tableView:(UITableView *)tableView …
4
votes
2answers
995 views
UITableView disable swipe to delete, but still have delete in Edit mode?
I want something similar as the Alarm app, where you can't swipe delete the row, but you can still delete the row in Edit mode.
When commented out tableView:commitEditingStyle:forRowAtIndexPath:, I …
4
votes
2answers
786 views
How do I change the color of the side Alphabet in an indexed UITableView?
I have a table view with an alphabetical index and am using the side alphabet to get through the list quickly. For those not familiar, that uses this:
- (NSInteger)tableView:(UITableView *)tableView …
4
votes
1answer
184 views
Exit Edit Mode
I have an array of objects which populate a UITableView. When a user removes the last object from the array, I automatically create a new "default" object. However, in the TableView, when the user …
4
votes
8answers
4k views
UITableView issue when using separate delegate/dataSource
General Description:
To start with what works, I have a UITableView which has been placed onto an Xcode-generated view using Interface Builder. The view's File Owner is set to an Xcode-generated …
