The UITableViewCell class defines the attributes and behavior of the cells that appear in iOS UITableView objects.

learn more… | top users | synonyms

118
votes
3answers
34k views

UITableViewCell, show delete button on swipe

How do I get the delete button to show when swiping on a UITableViewCell? I have followed this post, but the event is never raised and the delete button never appears!
97
votes
11answers
87k 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: ...
75
votes
5answers
22k 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.
68
votes
16answers
45k 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 ...
67
votes
8answers
34k views

Using a custom image for a UITableViewCell's accessoryView and having it respond to UITableViewDelegate

I'm using a custom drawn UITableViewCell, including the same for the cell's accessoryView. My setup for the accessoryView happens by the way of something like this: UIImage *accessoryImage = [UIImage ...
48
votes
4answers
19k views

Long press on UITableView

I would like to handle a long press on a UITableViewCell to print a "quick access menu". Did someone already do this? Particularly the gesture recognize on UITableView?
44
votes
7answers
50k views

UITableView Cell selected Color?

I have created a custom UITableViewCell. The table view is showing data fine. What I am stuck in is when user touches cell of tableview, then I want to show the background color of the cell other than ...
44
votes
3answers
32k views

How to change the blue highlight color of a UITableViewCell?

I'm wondering how to change the blue highlight/selection color of a UITableViewCell, any ideas?
41
votes
8answers
32k 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 ...
39
votes
8answers
9k views

Xcode 4.5 corrupting XIBs?

i am using the new xcode 4.5, i have this lines of code on some view controller: DiscoverCell* cell=[table dequeueReusableCellWithIdentifier:@"DiscoverCell"]; if(cell==nil){ NSArray *nib = ...
39
votes
5answers
14k views

In a storyboard, how to make a custom cell for use with multiple controllers?

I'm trying (real hard) to use storyboards in an app I'm working on. In the app there are Lists and Users and each contains a collection of the other (members of a list, lists owned by a user). So, ...
36
votes
4answers
22k 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: ...
35
votes
8answers
18k 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 ...
33
votes
8answers
9k views

Custom Cell Row Height setting in storyboard is not responding

I am trying to adjust the cell height for one of the cells on my table view. I am adjusting the size from the "row height" setting inside the "size inspector" of the cell in question. When I run the ...
33
votes
6answers
25k views

iPhone - dequeueReusableCellWithIdentifier usage

I'm working on a iPhone app which has a pretty large UITableView with data taken from the web, so I'm trying to optimize its creation and usage. I found out that dequeueReusableCellWithIdentifier is ...
32
votes
2answers
9k views

dequeueReusableCellWithIdentifier error in my UITableView in iOS5

I am getting this error in iOS 5 -[UITableView dequeueReusableCellWithIdentifier:forIndexPath:]: unrecognized selector sent to instance 0xa217200 However, I get no errors in iOS 6. How can I fix ...
30
votes
6answers
33k 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 ...
29
votes
3answers
26k views

Adding iOS UITableView HeaderView (not section header)

I want to add a table header (not section headers) like in the contacts app for example: exactly like that - a label beside an image above of the table. I want the all view be scrollable so I can't ...
29
votes
6answers
14k 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 ...
29
votes
7answers
12k 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. ...
27
votes
4answers
5k 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 ...
26
votes
7answers
26k 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 ...
25
votes
2answers
11k views

UIGestureRecognizer and UITableViewCell issue

I am attaching a UISwipeGestureRecognizer to a UITableViewCell in the cellForRowAtIndexPath: method like so: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath ...
25
votes
5answers
17k 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: ...
24
votes
7answers
8k views

Selected UItableViewCell staying blue when selected

When I push a view after a user has selected a UITableView row, the row gets a blue highlight, and then the new view appears. That's fine. But when I go 'back' the row is still highlighted in blue. ...
24
votes
4answers
23k views

UITableView cell with background image

i have a UITableView, where theres 3 images. 1 for the selected Cell, 1 for the Cell background, and 1 for the TableView background. My selected Cell, is working just fine, but have some problems ...
24
votes
10answers
22k 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 ...
23
votes
4answers
9k 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 ...
23
votes
4answers
19k 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 ...
23
votes
5answers
12k 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? ...
23
votes
6answers
5k views

How to create a toolbar between UITableView rows

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 ...
22
votes
5answers
12k 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 ...
22
votes
5answers
24k 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 ...
22
votes
6answers
28k 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.
22
votes
1answer
12k views

What's the default size for the UIImage in a UITableViewCell?

I want to put a UIImage in the left side of each row in a UITableView. This is pretty standard, and is supported directly by UIKit. But putting in a (large) image causes all kinds of wonkiness, so ...
21
votes
4answers
6k views

contentView not indenting in iOS 6 UITableViewCell prototype cell

I am configuring a custom UITableViewCell using a prototype cell in a Storyboard. However, all the UILabels (and other UI elements) do not seem to be added to the cell's contentView, instead being ...
21
votes
4answers
22k 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?
21
votes
2answers
12k 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 ...
21
votes
7answers
13k 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 ...
21
votes
4answers
15k 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 ...
20
votes
1answer
32k 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 ...
20
votes
7answers
18k 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 ...
20
votes
5answers
17k views

How can I customize the accessory disclosure image in a UITableViewCell?

I would like to use a custom version of the standard disclosure accessory image in my UITableView. How can I do this? I'm hoping that sub-classing UITableViewCell is not necessary for something this ...
20
votes
4answers
10k 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 ...
20
votes
2answers
19k 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 ...
19
votes
7answers
22k views

How to deselect a selected UITableView cell?

I am working on a project on which I have to preselect a particular cell. I can preselect a cell using -willDisplayCell, but I can't deselect it when the user clicks on any other cell. - ...
19
votes
3answers
5k views

Can't set background color of UITableViewCell in IB

Have created a bunch of cells which i reuse in a tableview. all of those cells have just different UILabels inside and some UIImageViews (nothing covers the complete cell). setting the background ...
19
votes
4answers
41k 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 ...
19
votes
2answers
3k views

initwithstyle:reuseIdentifier: not called

I'm creating my own custom UITableViewCell to use as the backend of a prototype cell. In my class I override the initwithstyle:reuseIdentifier: method to do some custom initialization, but my ...
18
votes
3answers
12k views

Is it possible to refresh a single UITableViewCell in a UITableView?

I have a custom UITableView using UITableViewCells. Each UITableViewCell has got 2 buttons in them. Clicking these buttons will change an image in an UIImageView within the cell. Is it possible to ...

1 2 3 4 5 136