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

learn more… | top users | synonyms

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 ...
97
votes
11answers
88k 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: ...
30
votes
6answers
34k 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 ...
22
votes
5answers
25k 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 ...
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: ...
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? ...
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 ...
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 ...
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 ...
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 ...
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 ...
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?
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 ...
21
votes
4answers
7k 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
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 ...
3
votes
5answers
9k views

Load image to a tableView from URL iphone sdk

I have tableView and need to load image from URL. I have an array that contains the URLs of images and when the page loads I need to load all the images into the tableview. Note that, not from a ...
9
votes
6answers
7k views

Getting row of UITableView cell on button press

I'm have a tableview controller that displays a row of cells, each of which have 3 buttons on them. I have numbered the tags for each cell to be 1,2,3. The problem is I don't know how to know on which ...
45
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 ...
9
votes
3answers
12k views

UITableViewCell without using deprecated method initWithFrame:reuseIdentifier

I have read Loren's article on drawing your own content for UITableViewCell. However, he is using a deprecated method: initWithFrame:reuseIdentifier: is deprecated on UITableViewCell. How do you get ...
11
votes
4answers
15k views

adding images to UItableView

Is is possible to add images to a table view? To the left side? And if so what size shout it be?
18
votes
2answers
11k views

iPhone - What are reuseIdentifiers (UITableViewCell)?

From the official documentation: The reuse identifier is associated with a UITableViewCell object that the table-view’s delegate creates with the intent to reuse it as the basis (for performance ...
119
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!
40
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, ...
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 ...
30
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. ...
22
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 ...
14
votes
2answers
9k views

UITextView in a UITableViewCell smooth auto-resize shows and hides keyboard on iPad, but works on iPhone

I have implemented a custom UITableViewCell which includes a UITextView that auto-resizes as the user types, similar to the "Notes" field in the Contacts app. It is working properly on my iPhone, but ...
40
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 = ...
17
votes
7answers
38k views

UITableViewCell's imageView fit to 40x40

I use the same big images in a tableView and detailView. Need to make imageView filled in 40x40 when an imags is showed in tableView, but stretched on a half of a screen. I played with several ...
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 ...
16
votes
4answers
9k views

Expand collapse UITableViewCell [duplicate]

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 ...
9
votes
1answer
4k 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 ...
13
votes
7answers
4k 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 ...
12
votes
4answers
6k 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 ...
7
votes
3answers
8k views

UITableViewCell with custom gradient background, with another gradient as highlight color

I have a custom UITableViewCell with a custom layout. I wanted a gradient background, so in my UITableViewDelegate cellForRowAtIndexPath: method, I create a CAGradientLayer and add it to the cell's ...
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.
11
votes
3answers
8k views

UITableViewCell Custom accessory - get the row of accessory

I have a pretty big issue. I am trying to create a favorite-button on every UITableViewCell in a UITableView. That works very good, and I currently have an action and selector performed when pressed. ...
9
votes
7answers
6k views

Prevent indentation of UITableViewCell (contentView) while editing

Is it possible to keep the contentView.frame always the same, regardless of tableView.editing? I already tried to override layoutSubviews and willTransitionToState but those options fizzled out too. I ...
4
votes
1answer
3k views

How can I change the amount of indentation on my custom UITableViewCell while editing?

I have made a custom UITableViewCell, and done it properly (adding everything to contentView, and overriding layoutSubviews so my subviews are relative to contentView.bounds). When the user presses ...
10
votes
3answers
15k views

In UITableView, cell.detailTextLabel.text isn't working… why?

In tableView:cellForRowAtIndexPath: I have the following: cell.textLabel.text = @"label"; cell.detailTextLabel.text = @"detail"; The textLabel shows as expected, but the detailTextLabel doesn't ...
8
votes
6answers
22k views

UITableView Separator line

How i can change the separator line that appears at the end of each Cell in UITableView. I want there an image that is a thin separator type line image. Thanks
3
votes
4answers
14k views

Where is a good tutorial for making a custom UITableViewCell?

I know there are plenty of tutorials for making custom UITableViewCells, but all of the ones I've found are 2 or 3 years old, and use deprecated methods. Or are very confusing. I know Apple has sample ...
4
votes
2answers
3k views

Update editing style of UITableViewCell depending on contents

I am creating a table-based interface similar to iPad Contacts, in which the user can add to a list of rows by tapping a blank row at the bottom. The table is always in editing mode, and non-blank ...
2
votes
2answers
1k views

UILongPressGestureRecognizer on UITableViewCell - double call

I'm using the UILongPressGestureRecognizer in a cell. What I need is: when a user taps a cell for 1.0 seconds, call one view controller. If the user taps the cell, another VC. I can accomplish that ...
1
vote
3answers
327 views

Duplicating subviews(UIButton and UIImageView) of UITableViewCell contentView on scrolling

In my tableView, in some cells i have added an imageView as subview of cell contentView. On scrolling tableView up and down these images duplicating on other cells also. But this problem doesn't occur ...
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: ...
15
votes
5answers
14k views

How to dynamically resize UITableViewCell height

I have the classical grouped UITableView with editable UITextViews inside every cell. This text views can be single or multi-lined, and I want the cell to increase its height as the user writes and ...
12
votes
2answers
6k views

Default UITableViewCellStyleSubtitle font size?

What is the default font size of textLabel and detailTextLabel?
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 ...
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 ...

1 2 3 4 5 14