A custom cell is a unique, personalized or subclassed version of some generic cell type.
Questions tagged [custom-cell]
759 questions
-2
votes
1 answer
How to open a VC from custom tableView cell
I've a tableView with custom cells.
Cell has programmatically created button (added via addSubview) in customCell.swift-file (and here we're working)
How can I make an action for this button which will push another viewController via…

SwiftStudier
- 2,272
- 5
- 21
- 43
-2
votes
1 answer
How to set Frame properly in Viewdidappear using reference of cell
I want to display captured video using MPMoviePlayer for that purpose I designed one customcell and number of sections is one and I am loading ten by ten records in tableView so number of rows depends on array count so every time ten by ten records…

Mahesh Kolagatla
- 91
- 1
- 4
-2
votes
2 answers
Do not add an existing item in the cellForRowAtIndexPath
In my TableViewController I use custom cell, this cell has a scrollView. My cellForRowAtIndexPath method looks like:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
CustomCell *cell =…

daleijn
- 718
- 13
- 22
-2
votes
1 answer
Custom cell in UITableViewController in Swift
If I put in a prototype cell in UITableViewController UILabel, UIImageView, etc. and do the outlet, then I get the error: Connection cannot have a prototype object as its destination.
I decided to do differently: I put in a cell prototype I needed…

Alexey Nakhimov
- 2,673
- 8
- 34
- 49
-3
votes
1 answer
What is that? Cell or Table?
I am finishing my first app adding an About Us section. I want to create something like this there:
I want to insert the FAQ and website link but what is that? Is a custom cell? a Table?
Now I am using a simple button but I think that the option in…

Corrado
- 41
- 8
-3
votes
1 answer
core data custom cell
I try to write to out of the cells label but it not work.
My Code is like this:
cell.idNummer.text = [NSString string With Format: @"%@", laddataId];
In core data is laddataId an integer 32. What should I write to display in label?

Anders75
- 1
- 1
-3
votes
2 answers
How to get indexPath value to the NSMutableArray?
I have to get the IndexPath values to the NSMutableArray. I have to do an operation when a particular cell is selected at that time it's IndexPath is stored in NSMutableArray and particular cell height is increasing. When I am pressing again on the…

Ankit
- 286
- 4
- 16
-3
votes
3 answers
UITableView CustomCell crash on Button Click
This is very common question at SO though I have google and cross check my code few times but I am not able to figure out the crash
*** -[MyCustomCell performSelector:withObject:withObject:]: message sent to deallocated instance 0x96f6980
I have a…

Heena
- 2,348
- 3
- 32
- 58
-5
votes
4 answers
Hide custom cell image
I am displaying a button in cutstom cell in UITableview. How do I hide that button when it is not needed. For example: I am display received images count on button. In case count will be zero, I need to hide that button from…

user2003416
- 159
- 2
- 9