A custom cell is a unique, personalized or subclassed version of some generic cell type.
Questions tagged [custom-cell]
759 questions
3
votes
2 answers
Loading different custom cells in the same table using factory pattern
I have 3 custom cells to be displayed in one tableview of 50 rows.
I found a reference which satisfies my need at
Multiple Custom Cells dynamically loaded into a single tableview
It seems it gets complicated to create objects for cells.
As per my…

satyanarayana
- 265
- 4
- 14
3
votes
0 answers
How to display images as uitableviewcell in ios quickblox chat app?
I am using a custom tableview cell that displays text in chat bubbles and its working fine.
But i want to display images in chat.
For that i am doing belowed steps:
TO choose and upload file:
- (IBAction)btnAttachments:(id)sender{
self.imagePicker…

Milan Manwar
- 374
- 3
- 10
3
votes
2 answers
How to pass an argument when configuring custom UITableViewCell
I have a custom UITableViewCell, lets call it CustomCell. All I need is to pass an argument when creating it, lets say a NSURL.
This is what I've done so far in my ViewController:
In viewDidLoad:
[myTableView registerClass: [CustomCell class]…

Odd
- 95
- 6
3
votes
4 answers
How to work with two different custom cells in one tableView ? Using Storyboard, iOS 7
I have two custom cells. And I want to display 2 sections in my UITableView. The first section with one row displaying the first custom cell, and the second section displaying a list of objects pulled from core data.
How should I implement the…

JuanM.
- 434
- 1
- 8
- 19
3
votes
2 answers
Custom cell for iOS app: XIB or coding?. Issues with height and frames positions
I'm trying to build a custom UITableCellView that will contain multiples subviews but right now I'm struggling with only two of them (the biggest ones): a UIImageView (I wouldn't mind to use UIWebView instead since the images are coming from…

bitsdisasters
- 253
- 5
- 14
3
votes
2 answers
IOS: use custom cell in some classes
When I crate a custom cell I create a class UITableViewCell and add a nib with a tablecell; it's very clear.
I want to understand how to manage the situation when I should use this custom cell in some classes where I use a tableview.
For example I…

cyclingIsBetter
- 17,447
- 50
- 156
- 241
3
votes
2 answers
How do I maintain and save custom cell textfield entry data when scrolling cells deque
Sadly I know what the issue is however I'm green and don't know the best way to go about handling it. I have read the apple documentation and all the related questions here and cant find or interpret the info sufficiently.
As you will see below. I…

Narsil
- 57
- 6
3
votes
2 answers
Showing a checkmark accessory view move the table contents
I followed Apple's documentation on adding subview to the UITableViewcell here
to add a 3rd label to the cell. The problem is when I show the standard checkmark accessory view on the right the whole cell contents moves left even when I didn't show…

Ali
- 4,205
- 4
- 25
- 40
3
votes
3 answers
How to get text from textView from custom cell iphone
I have a table view with custom cell.On my custom cell, I have a label and textView and I want to get data from textView to save in feedBack button. When I add txtView in my data array, I get custom cell twice. How to remove this issue
-…

Noor
- 2,071
- 19
- 28
3
votes
2 answers
How can i implemented delete button in AQGridViewCell
i want to add button in my Customized AQGridViewCell with ImageView. when i Click Edit button its showing delete button on the ImageGridViewCell like below image.i added delete button in cellForItemAtIndex method. here my code
- (AQGridViewCell…

Vijay
- 579
- 1
- 11
- 22
3
votes
3 answers
How to find the x , y position of button frame in a custom cell
I made a table view with a custom cell as follows.
![Custom cell][1]
![Out put table view][2]
i need to set ratings using picker instead of slider in each cell
I need to set picker position only on just bellow the button it will varie with…

user1811427
- 359
- 2
- 6
- 17
3
votes
4 answers
How to create dependant dropndown/selection cell In GWT celltable 2.3?
I am using gwt2.3 celltable.
In my celltable there will be multiple column out of that few columns are dependent.
ex. Name and address columns are dependent
Name and address columns contains my custom selection cells.
In Name column : 1 cell…

StackOverFlow
- 4,486
- 12
- 52
- 87
2
votes
3 answers
How to access the cell in tableview?
I am new to the iPhone development. I got stuck with a problem. I want a check box function implemented in my UITableView. But my UITableViewCells are custom cell which consist of image and 3 UILabels. I could bring a sub view to the table view so…

user1288402
- 35
- 2
- 7
2
votes
3 answers
Prototype cells with custom class does not fire init?
I am pretty new to objective-c and have a question regarding prototype cells.
I have a tableview with custom cells, and it works nicely.
Now I have also in my custom cell class overridden -(id)init and -(id)initWithStyle: reuseIdentifier:
If I do a…

Ostmeistro
- 394
- 2
- 15
2
votes
1 answer
How to give IBAction event to custom cell's UIButton?
I want to give custom cell's UIButton IBAction event.
I tried with below code but it crashes.
How can I create delegate & use that in my UITableView class?
Customcell class
-(IBAction)btnShowAttachmentClick:(UITableView *)aTblViewCommon
{
…

Heena
- 2,348
- 3
- 32
- 58