Tagged Questions
The UITableViewCell class defines the attributes and behavior of the cells that appear in iOS UITableView objects.
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:
...
37
votes
3answers
11k views
What is the default height of UITableViewCell?
I thought this information would have been easier to find :-)
What is the default height of a UITableViewCell? It looks like 44 pixels, but I'd prefer to be sure.
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 ...
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:
...
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. ...
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
4answers
6k views
UITableView flexible/dynamic heightForRowAtIndexPath
Case
Normally you would use the cellForRowAtIndexPath delegate method to setup your cell. The information set for the cell is important for how the cell is drawn and what the size will be.
...
14
votes
7answers
14k views
Changing UITableViewCell textLabel background color to clear
In my app I have a table view with customViewCells. I subclassed the UITableViewCell class and added an image that will load async and for the text I use cell.textLabel.text = @"someThext".
For the ...
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 ...
14
votes
2answers
14k views
UITableViewCell with image on the right?
Is there a way to set the UITableViewCell.image to display on the right hand side of the cell instead of the left? Or will I need to add a separate UIImageView on the right side of the cell layout?
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 ...
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
2answers
13k views
alternative to deprecated UITableViewCell setText?
Code in the book Beginning iPhone Development (by Dave Mark & Jeff LaMarche) assigns to the UITableViewCell text property:
UITableViewCell *cell = ...
...
cell.text = ...
This assignment brings ...
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 ...
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
4answers
8k views
dynamic calculation of UILabel width in UITableViewCell
I am building a custom, in-application settings view based on UITableViewCellStyle1 (or so). I'm trying to dynamically calculate the width of the left label (title) of a cell in order to determine how ...
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.
11
votes
1answer
3k views
Selecting a UITableViewCell in Edit mode
If I create a UITableViewController - drilling down works as expected. If a user selects a cell and I implement 'didSelectRowAtIndexPath', the cell flashes blue and the next view shows up.
But, if I ...
10
votes
5answers
10k views
UITableview: How to Disable Selection for Some Rows but Not Others
I am new to iPhone development. I am displaying in a group tableview contents parsed from XML.I want to disable the click event on it (I should not be able to click it at all.) The table contains two ...
10
votes
3answers
5k views
Any way to pre populate core data?
ive been creating a list app and backing it with core data. I would like to have a default list of say 10 airport items so that the user doesnt have to start from scratch. Is there any way to do this? ...
10
votes
3answers
4k views
Why does uitableview cell remain highlighted?
What would cause a tableview cell to remain highlighted after being touched? I click the cell and can see it stays highlighted as a detail view is pushed. Once the detail view is popped, the cell is ...
10
votes
1answer
18k views
Changing border color in iPhone UITableView cells (non-grouped)
I've read (and used) the code here which illustrates how to change the background color and border color of a UITableViewCell in grouped mode on the iPhone. I'm writing an app now which has a ...
10
votes
5answers
16k 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 ...
9
votes
3answers
5k views
Long press on UITableView
I would like to handle a long press on a UITableViewCell to print a "quick access menu".
Does someone already did this ?
Particularly the gesture recognize on UITableView ?
9
votes
1answer
3k views
How? UITableViewCell with UIImageView asynchronously loaded via ASINetworkQueue
I'm trying to load some images in table cells asynchronously using ASINetworkQueue. I just can't figure it out and can't seem to find a good SIMPLE example.
The best I can find is this, but its just ...
9
votes
1answer
4k views
How can I get the UITableView scroll position so I can save it?
Is there any way to find out which UITableViewCell is at the top of the scroll window?
I'd like to get the current scroll position so that I can save it when the app exits. When the app gets ...
9
votes
3answers
5k views
2 different types of custom UITableViewCells in UITableView
in my UITableView i want to set for the first news of an rss feed a custom tableViewCell(Type A lets say) and for the other news second, third etc.. another custom tableViewCell(trype B) the problem ...
9
votes
4answers
4k views
Removing text shadow in UITableViewCell when it's selected
I've added a text shadow to cells in my UITableView to give them an etched look:
cell.textLabel.textColor = [UIColor colorWithWhite:0.2 alpha:1.000];
cell.textLabel.shadowColor = [UIColor ...
9
votes
4answers
25k views
What's with [UITableView reloadData]?
I have an application that has a UITableView. This UITableView is populated by an NSMutableArray being held (as a property) in the appDelegate. You can think of this as an email window. It lists ...
8
votes
4answers
3k views
UITableView crash gives 'CALayerInvalidGeometry', reason: 'CALayer position contains NaN: [160 nan]'
I have a custom table view in my app. I have implemented the "Load More" feature to the table which loads 25 rows at a time. The problem is after loading 2 times the app crashes giving ...
8
votes
4answers
3k views
How to make a UITableViewCell with a UITextView inside, that dynamically adjust its height, on the basis of the UITextView?
I would like to have a tablew view with a behaviour similar to the iPhone Contacts app by Apple: a uitableviewcell with a uitextview inside, so that when I write in the uitextview, the uitextview ...
8
votes
4answers
3k views
Removing cell borders from a section of grouped-style UITableView
I have a UITableViewController initialized with the grouped style and having multiple sections. For one of these sections, I'd like its constituent cells to be completely transparent and have no ...
8
votes
2answers
3k views
How should I addSubview to cell.contentView?
A (when the cell is newly created):
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
...
8
votes
6answers
1k views
iPhone : form like new contact
I have some questions about the Apple iPhone Contact App. I want to use the same methode to create and modify information.
Here's two pics :
So we have the creation and the edition. The form ...
8
votes
3answers
2k views
Black Corners On Grouped UITableViewCells Only After Navigation Pops
I am no graphics expert but I somehow managed to make some good looking custom grouped UITableViewCells by setting the background view to a backgroundView with some CG code. In all SDK's up to 3.1.3 ...
8
votes
2answers
1k views
Programmatically determining padding for grouped UITableView
Is there a way to programmatically get a UITableView's 'grouped' style padding?
I'd like to size some things in my screen but I need to know how far left or right to place them on a grouped ...
8
votes
2answers
10k views
Calculating multiline text height for UILabel/UITableViewCell: different results when calculating vs actual drawing
This general topic has been asked here multiple times: how to render UITableViewCells with varying amount of text and thus varying height. The canonical answer is: you calculate the height in table ...
8
votes
5answers
11k views
iPhone UITableView - Delete Button
I am using the 'swipe to delete' functionality of the UITableView.
The problem is I am using a customised UITableViewCell which is created on a per item basis in
- (UITableViewCell ...
8
votes
4answers
7k views
Delayed UIImageView Rendering in UITableView
Ok, I've got a UITableView with custom UITableViewCells that each contain a UIImageView whose images are being downloaded asynchronously via an NSURLConnection. All pretty standard stuff...
The issue ...
8
votes
3answers
13k views
UISwitch inside custom UITableViewCell not available
I have a UISwitch inside a custom UITableViewCell (the subclass of which I call RootLabeledSwitchTableCell).
The cell contains a UILabel and UISwitch next to each other.
I have a @property called ...
8
votes
5answers
3k views
Iphone badge to UITableViewCell
How to add badge to UITableViewCell, like this:
is it simply adding a subview with a text and lable on it ?
thanks
7
votes
5answers
540 views
Different cell bg color depending on iOS version (4.0 to 5.0)
I have a custom grouped UITableViewCell, with a couple of UILabels on it. Since the UITableViewCell background color used to be pure white, it matched the UILabels' default background color, so the ...
7
votes
9answers
693 views
How can I speed up a UITableView?
I have a UITableView with about 400 cells in 200 sections and it's a little sluggish in responding to user interaction (scrolling, selecting cells.) I've made sure the methods for retrieving cells and ...
7
votes
4answers
878 views
How to resize a UIButton in a UITableView footer when orientation changes
I'm using two UIButtons in a footer of a UITableView (both subviews of a single UIView). I am not using a UITableViewCell because I wanted to skin the button so it looks like the red Delete button at ...
7
votes
1answer
3k views
UITableViewCell, UITextView with dynamic height
I need to make a UITableViewCell that holds alot of text. I know I can add a UITextView to my cell, but each entry will not have the same amount of text.
I know I can control the height of the ...
7
votes
4answers
1k views
UIButton in UITableViewCell
I have a UIButton with an image inside of a UITableViewCell. When the cell is being highlight, the button is also entering the highlighted state (i.e. a darker shade of the image), regardless of ...