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

learn more… | top users | synonyms

33
votes
6answers
26k 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 ...
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 ...
18
votes
2answers
12k views

How can I do variable height table cells on the iPhone properly?

My app needs to have variable height table cells (as in each table cell differs in height, not that each cell needs to be able to resize itself). I have a solution that currently works, but it's ...
12
votes
5answers
23k views

ios steps to create custom UITableViewCell with xib file

I need to create my own UITableViewCell using the xib file, to draw the graphic interface... what are the right steps to create my new class and to use into my UITableView? thanks in advance
4
votes
2answers
6k views

How to add checkboxes to UITableViewCell??

some time ago someone already asked this question and a few answers were given but i didn't really understand any of them. So i was wondering if anyone could please write an easy to understand ...
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?
6
votes
1answer
7k views

Changing the delete accessory view in a UITableViewCell

Is it possible to change the view shown in response to a left to right "I want to delete this row" swipe in a UITableView's UITableViewCell? Currently the 'delete' button seems to ignore all of the ...
1
vote
2answers
5k views

UITableViewCell dynamic height :/

Hee all, I have created a UITableViewCell with a NIB file. There is 1 label in it wich is going to contain a tweet. So it needs to be a dynamic height. There also is a timeAgo label that has to fit ...
6
votes
2answers
9k views

Getting visible cell from UITableView pagingEnabled

I have a UITableView with pagingEnabled. Each cell takes up the viewing area of the table. Meaning, each cell is the same height and width as the table. I'm using custom cells that have a name ...
4
votes
3answers
3k views

Change default icon for moving cells in UITableView

I need to change default icon for moving cells in UITableView. This one: http://i.stack.imgur.com/sowGB.png Is it possible?
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 ...
6
votes
5answers
7k views

How to detect touches on UIImageView of UITableViewCell object in the UITableViewCellStyleSubtitle style

I am using the UITableViewCell object in the UITableViewCellStyleSubtitle style(i.e an ImageView on the left, textLabel in bold and under that detailtextLabel) to create my table. Now I need to ...
2
votes
4answers
11k views

Custom draw a UITableViewCell

I am trying to create a UITableViewCell which overrides the complete drawing of the contents. I have overridden drawRect, which is being called, but it still draws the default contents. How do I ...
17
votes
2answers
12k views

cell.detailTextLabel.text not working… why

Using the following code I am getting the text.label but not the detailTextLabel.text. The NSLog is displaying correctly. cell.textLabel.text = [eventLabels objectAtIndex:indexPath.row]; ...
5
votes
3answers
7k views

How to put a UITextField inside of a UITableViewCell (grouped)?

How to put a UITextField inside of a UITableViewCell (grouped)? I want a user to be able to edit it.
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 ...
9
votes
7answers
3k views

UIView backgroundColor disappears when UITableViewCell is selected

I have a simple tableViewCell build in interface builder. It contains a UIView which contains an image. Now, when I select the cell, the default blue selection background is shown, but the ...
5
votes
3answers
6k views

how to create custom tableViewCell from xib

I want to create a custom TableViewCell on which I want to have UITextField with editing possibility. So I created new class with xib. Add TableViewCell element. Drag on it UITextField. Added outlets ...
5
votes
4answers
9k views

indentationLevelForRowAtIndexPath not indenting custom cell

I have overridden the tableView:indentationLevelForRowAtIndexPath method in my UITableViewController derived class as follows: - (NSInteger)tableView:(UITableView *)tableView ...
4
votes
3answers
2k views

UITableViewCell, Delete Button Frame?

Is there a way to alter the frame of the "swipe" [DELETE] button used on UITableViewCells? Currently its centred vertically within the cell, but if possible I would like to move it down to the cyan ...
3
votes
9answers
5k views

Custom UITableViewCell button action?

I've been looking around to find a solution to this, but can't seem to find one that works for me. I have a custom cell with a button inside. My problem is how do I pass the indexPath to the action ...
1
vote
3answers
2k views

hitting a next button for a UITableViewcell

I was wondering how I can realize the following: Creating a next button and when it's tapped the next UITableview row will be selected. Since a picture is worth a thousand words I've added a ...
9
votes
6answers
16k views

How do I select a UITableViewCell by default?

I have created a UITableView and would like a specific UITableViewCell to appear selected (blue) when the view is loaded.
8
votes
8answers
5k views

SDWebImage : setImageWithURL fails when used to set image of a UITableViewCell

When call setImageWithURL, it fails with following, [UIImageView setImageWithURL:placeholderImage:]: unrecognized selector sent to instance 0x149a20 2011-12-14 18:11:38.060 [781:707] Terminating app ...
5
votes
2answers
4k views

Storyboard static cells: dequeueReusableCellWithIdentifier returns nil

Using storyboard, static cells, in cellForRowAtIndexPath: the line UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; always returns nil. I have checked the ...
5
votes
1answer
1k views

UITableViewCell going black when selected programmatically

I was wondering why this code would give me black UITableViewCells when I set the selected property ON. If I do that, the content of the cell turns completely black, and I have no idea why. Here's ...
2
votes
1answer
649 views

UITableViewCell allocation issue - cell is not nil

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell2"; UILabel *titleLabel; UITableViewCell ...
3
votes
1answer
2k views

How to make reorder control of UITableViewCell in left side?

I am doing a news reader app and I want that user can choose show/hide news categories (such as top news, business, technology,sports, etc) and reorder them like BBC news app in android. See picture ...
3
votes
2answers
352 views

Incorrect number of objects getting added to mutable array

I have a view controller with table view that contains 8 cells(sections).I have created a textField and added that text field as a subview to 6 cells,remaining 2 cells of which one cell contains a ...
2
votes
6answers
3k views

Detect when UITableViewCell goes off the screen

I'm implementing a rich UITableView with custom created UITableViewCell, I show these on the screen in one fashion, but once they go off the screen I want to take a note of that, since the second time ...
0
votes
1answer
271 views

How to consistently draw NSAttributedString in UITextView in UITableViewCell

I am having trouble getting consistent results from UITextViews in a UITableViewCell using NSAttributedStrings. Inside - (UITableViewCell *)tableView:(UITableView *)tableView ...
0
votes
2answers
3k views

Retrieve all rows inserted in sqlite database and display in table view cells containing labels as subviews with different sections

I am newbie to objective-c and sqlite.I have inserted data in to table using sqlite successfully.My project contains 2 pages Add Reminder page:Where user enters data and clicks save which is the ...
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.
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 ...
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 ...
10
votes
3answers
16k 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 ...
9
votes
9answers
3k 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 ...
3
votes
5answers
11k views

Cache URL images iphone UITableview

I'm seeking a tutorial on how to cache images loaded from a url into cells of a uitableview. I found an example here http://www.ericd.net/2009/05/iphone-caching-images-in-memory.html#top But the ...
25
votes
7answers
9k 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. ...
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 ...
17
votes
2answers
8k views

Connect outlet of a Cell Prototype in a storyboard

I'm a newbie with the Storyboard and so I have some difficulties... I have created a TableViewController and I would like to customize the Cell Prototype. In the Cell Prototype I have added several ...
8
votes
2answers
6k views

iPhone UITableViewCell layer shadow

I'm trying to add a shadow to a UITableViewCell using the layer.shadowColor, Offset, Radius but it doesn't seem to affect it in any way. The table is grouped style. Any ideas why? Here is the code ...
6
votes
1answer
1k views

Customized tableView à la Tweetbot

The one you see below is a screen shot of Tweetbot iPhone application. What I want to ask is if you know a way I can achieve what the Tapbots guys achieved in their tableView: you tap on a cell of the ...
6
votes
4answers
8k views

Changing bounds of imageView of UITableViewCell

I'm trying to place various size images inside imageView of UITableViewCell. I get the image data asynch'ly, create the image, set the content mode of imageView and finally set bounds of imageView. ...
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 ...
22
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
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 ...
5
votes
4answers
3k views

How can I recycle UITableViewCell objects created from a XIB?

I'd like to create custom UITableViewCell using an XIB, but I'm not sure how to recycle it using UITableViewController's queueing mechanism. How can I accomplish this? Folks, this question was ...
11
votes
4answers
18k views

How to initialize a custom prototype style table cell in iOS 5 storyboards?

I am converting over to iOS 5 and storyboards. When I have a table view with default cell style, everything works fine. - (UITableViewCell *)tableView:(UITableView *)tableView ...
6
votes
4answers
11k views

Multi-line UITableViewCell using UITableViewCellStyleValue2 style

I'm trying to figure out how to replicate the UITableViewCellStyleValue2 style so that the detail text can be multiple lines - as seen in the 'address' cells in the Contacts app. Like the Contacts ...

1 2 3 4 5 14