UITableView is a means for displaying and editing hierarchical lists of information on iOS.
117
votes
6answers
48k 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?
56
votes
10answers
58k views
How to customize the background/border colors of a grouped table view?
I would like to customize both the background and the border color of a grouped-style UITableView.
I was able to customize the background color by using the following:
...
49
votes
10answers
61k 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 ...
46
votes
2answers
14k views
UITableView backgroundColor always gray on iPad
When I set the backgroundColor for my UITableView it works fine on iPhone (device and simulator) but NOT on the iPad simulator. Instead I get a light gray background for any color I set including ...
46
votes
25answers
35k views
UITableView and keyboard scrolling issue
after a lot of trial and error, I'm giving up and asking the question. I've seen a lot of people with similar problems but can't get all the answers to work right.
I have a UITableView which is ...
37
votes
14answers
32k views
Loading a Reusable UITableViewCell from a Nib
I am able to design custom UITableViewCells and load them just fine using the technique described in the thread found at http://forums.macrumors.com/showthread.php?t=545061. However, using that ...
34
votes
3answers
50k views
Setting custom UITableViewCells height
I am using a custum UITableViewCell which has some labels, buttons and imageviews to be displayed. There is one label in the cell whose text is a NSString object and the length of string could be ...
32
votes
12answers
11k 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 ...
28
votes
2answers
12k views
iPhone Pull Down Refresh like Tweetie
I am trying to find an example of placing an element above the Table View outside the normal scrollable region. How would I do this? An example would be what the Tweetie 2 app for the iPhone does to ...
26
votes
12answers
20k views
Detecting which UIButton was pressed in a UITableView
I have a UITableView with 5 UITableViewCells. Each cell contains a UIButton which is set up as follows:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath ...
24
votes
3answers
9k 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 ...
23
votes
1answer
6k views
Tutorial on How to drag and drop item from UITableView to UITableView [closed]
I've been banging my head on this one for a while and I figured it out. I want to give back to the community since I've gotten a lot of help from this website :).
I'm trying to copy an item from one ...
20
votes
9answers
30k views
iPhone SDK: Creating a big, red UIButton
Using the iPhone SDK, how would I go about creating a red "delete" button similar to the one used when deleting contacts on the iPhone?
Screenshot (I'm trying to duplicate the red button at the ...
18
votes
2answers
18k views
How to create NSIndexPath for TableView
I need delete row 1 of a table in a function i have defined. In order to use deleteRowAtIndexPath you must use an IndexPath with a section and row defined. How can I create an indexpath like this?
...
18
votes
3answers
7k views
Default height for section header in UITableView
I want to set the height of the first header in my UITableView. For the other headers I want them to remain the default height. What value/constant can I put in place of "someDefaultHeight" in the ...
18
votes
4answers
6k views
How to stop UITextView from scrolling up when entering it
I have a UITextView included in a UITableViewCell. The layout is correct when the views are initially displayed, but once I click in the UITextView it automatically scrolls up a bit and the top half ...
18
votes
5answers
10k views
Checkbox image toggle in UITableViewCell
I need some guidance on creating a UITableViewCell that has an image on the left which can be toggled. The image should be tappable and act as a toggle (checkbox).
My parts I'm struggling with are:
...
18
votes
10answers
15k views
Lazy load images in UITableView
I have some 50 custom cells in my UITableView. I want to display an
image and a label in the cells where I get the images from URLs.
I want to do a lazy load of images so the UI does not freeze up ...
18
votes
5answers
15k views
Lazy load images in UITableViewCell
I have some 50 custom cells in my UITableView. I want to display an image and a label in the cells where I get the images from URLs.
I want to do a lazy load of images so the UI does not freeze up ...
18
votes
7answers
13k views
How to resize a tableHeaderView of a UITableView?
I'm having trouble resizing a tableHeaderView. It simple doesn't work.
1) Create a UITableView and UIView (100 x 320 px);
2) Set the UIView as tableHeaderView of the UITableView;
3) Build and Go. ...
18
votes
3answers
12k 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 ...
17
votes
7answers
19k views
Is it possible to configure a UITableView to allow multiple-selection?
For the iPhone, is it possible to configure a UITableView such that it will allow multiple-selection?
I've tried overriding -setSelected:animated: for each UITableViewCell, but trying to fudge the ...
16
votes
7answers
700 views
Last In-First Out Stack with GCD?
I have a UITableView that displays images associated with contacts in each row. In some cases these images are read on first display from the address book contact image, and where there isn't one they ...
16
votes
3answers
5k views
Weird UITableViewCell Loading Exception
In my app, I use a custom NIB to load my UITableViewCells. The NIB's File's Owner is set so the class is my View Controller. I then Link the UITableViewCell to the IBOutlet I put in the header file. ...
16
votes
4answers
10k views
Eliminate Extra separators below UITableView - in iphone sdk?
When I set up the tableview say with 4 rows, there are still extra separators lines below the tableview (or extra blank cells)
How would I remove these cells (like in this case I just need 4 top ...
16
votes
3answers
15k 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 ...
16
votes
9answers
7k views
Change Default Scrolling Behavior of UITableView Section Header
I have a UITableView with two sections. It is a simple table view. I am using viewForHeaderInSection to create custom views for these headers. So far, so good.
The default scrolling behavior is ...
16
votes
3answers
22k 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 ...
15
votes
5answers
487 views
How does (or how would) Apple do this animation?
What I'm trying to do:
The bottom (and top) cells of a "grouped style" UITableView have rounded corners - as is the default in many Apple iOS and non Apple apps. Sometimes cells are inserted via an ...
15
votes
3answers
6k views
How to use the first character as a section name
I'm using Core Data for a table view, and I'd like to use the first letter of each of my results as the section header (so I can get the section index on the side). Is there a way to do this with the ...
14
votes
1answer
3k views
UITableView section header iOS 5
I have multiples tables delegated to a UIViewController. In IOS4 I used the function: (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section to change the background ...
14
votes
1answer
488 views
Matt Gallagher's UITableView (Revisited) + NSFetchedResultsController
If you look at Matt Gallagher's Cocoa With Love blog, he has a brilliant discussion (with sample code) on a fresh a beautiful retake on UITableView ... In the post, he talks about it's great many ...
14
votes
5answers
718 views
How to add a subview to a UITableViewCell and resize it while in editing mode?
Edit: I'm starting a bounty on this one, as I'm looking for a "cleaner" solution with a UITableViewCell subclass, rather than messing with the UITableView delegate and datasource. Ideally, I'd like to ...
14
votes
4answers
3k views
Expand collapse UITableViewCell [closed]
Possible Duplicate:
UITableView Cell expand on click
i need help in UITableViewCell of UITableView.My requirement is below:
look at Retweets , list and More
when i click retweet ...
14
votes
2answers
8k views
iPhone UITableView. How do turn on the single letter alphabetical list like the Music App?
In the iPhone music app, selecting Artist, Songs, or Albums presents a tableView with a verticl list of single letters at the righthand side of the UI that enables rapid scrolling. How do I enable ...
14
votes
7answers
12k views
How to create a UITableViewCell with a transparent background
I'm trying to set the background color of a UITableViewCell to transparent. But nothing seems to work. I have some images/buttons inside the tableViewCell and I would like to make the white ...
13
votes
6answers
17k views
How to determine UIWebView height based on content, within a variable height UITableView?
I am trying to create a UITableView with variable height rows as explained in the answer to this question
My problem is each cell contains a UIWebView with different (statically loaded) content I ...
13
votes
5answers
19k views
How do I remove the borders of a UITableView?
I have subclassed the UITableView control, and the style is grouped, but I do not need the cell separators. I tried setting my table view's separatorStyle to none, but it doesn't work. Can any one ...
12
votes
5answers
1k views
how to create tweetbots popup in UITableViewCell
I am interested on how tweetbot does the following:
I would like to create the same thing with my app, where if you click on a row it pops
an additional UIToolBar and pressing on any other row will ...
12
votes
4answers
6k views
UISwitch in a UITableView cell
How can I embed a UISwitch on a UITableView cell? Examples can be seen in the settings menu.
My current solution:
UISwitch *mySwitch = [[[UISwitch alloc] init] autorelease];
cell.accessoryView = ...
12
votes
3answers
3k views
Get height of UITableView without scroll bars
I need to get the full height of a UITableView (i.e. the height at which there would be nothing more to scroll). Is there any way to do this?
I've tried [tableView sizeThatFits:CGSizeZero], but that ...
12
votes
1answer
34k views
UISearchBar Sample Code
Implementing a searchbar can be tricky business and I'm struggling to make it work for my situation. Here's a collection of some of the sample code I've found for implementing a UISearchBar. Please ...
12
votes
8answers
5k views
Light gray background in “bounce area” of a UITableView
Apple's iPhone apps such as Music and Contants use a search bar in a UITableView. When you scroll down so that the search bar moves down, the empty space above the scroll view's contents has a light ...
12
votes
1answer
10k views
UITableView with dynamic cell heights — what do I need to do to fix scrolling down?
I am building a teensy tiny little Twitter client on the iPhone. Naturally, I'm displaying the tweets in a UITableView, and they are of course of varying lengths. I'm dynamically changing the height ...
12
votes
16answers
12k views
Changing the size of the UISearchBar TextField?
I have a UITableView with an Index on the side; I want to add a UISearchBar to it, but the index overlaps with the "x" to clear the search. I've noticed in the Contacts application, the textfield ...
11
votes
5answers
3k views
why doesn't UITableViewCell background color work (set in interface builder)?
Why doesn't UITableViewCell background color work (set in interface builder)?
I note from some googling that the follow code set in your custom subclass of UITableViewController does work (see ...
11
votes
2answers
3k views
problem with “this class is not key value coding-compliant”
I know the meaning of this error, but I'm really struggling with it, and I need someone's help :
2010-09-21 15:03:11.562 Stocks[5605:207] *** Terminating app due to uncaught exception ...
11
votes
4answers
6k views
How to set the width of a cell in a UITableView in grouped style
I have been working on this for about 2 days, so i thought i share my learnings with you.
The question is: Is it possible to make the width of a cell in a grouped UITableView smaller?
The answer is: ...
11
votes
1answer
3k views
UITableView didSelectRowAtIndexPath: not being called on first tap
I'm having an issue with UITableView's didSelectRowAtIndexPath.
My table is setup so that when I select row it initializes a new view controller and pushes it.
The first time I tap any row in the ...
11
votes
2answers
11k views
How to customize tableView seperator in iPhone
By default there is a single line separator in uitableview.
But I want to put my customized line as a separator.
Is it possible ? How ?
Thanks in advance for helping me.