Questions tagged [custom-cell]

A custom cell is a unique, personalized or subclassed version of some generic cell type.

759 questions
0
votes
1 answer

Two UITableViews with different CustomCells (one for table1 and the second for table2)

i try to implement 2 UITableViews on my view. Both tables have different custom-cells (Table one has customcell one and table two has customcell table. My cellForRowAtIndexPath don't handle it if (tableView == self.firstTableView) { static…
A o
  • 1
  • 1
0
votes
2 answers

Created a custom cell and now navigation controller does not work

So I am working on a simple app and I ran into a little issue. I had a working app and before I had a table view which was embedded in a navigation controller, and when a cell was selected it would move into the next view where details about the…
user2615699
0
votes
1 answer

no images showing using a plist to populate in UITableview custom cell

I am trying to populate 2 images in a UITableView with information from a plist file. Currently all of my label fields are populating however I am getting no images are showing. As I am new to this I am not quite sure whats wrong with the image…
John
  • 1
  • 1
0
votes
1 answer

UItableview custom designed separator issue at indexpath.row=0

my problem is I want to add custom designed seperator line between my UITableview cells except first cell of table(indexPath.row=0). Following code seems fine when I reload my table first time. However when I scroll down and scroll up it appears…
user1951145
  • 87
  • 2
  • 6
0
votes
1 answer

Make elements in UITableVew Custom cell touchable

I have a UITableView with custom cell XIB. The custom cell has two labels and one UITextView. It all works fine, however I noticed that when I press on the labels or the UITextView, nothing happens. Its only when I press an area of the cell which is…
Supertecnoboff
  • 6,406
  • 11
  • 57
  • 98
0
votes
1 answer

GWT FileUpload Cell Type

Hey guys i am making a celltable of contacts and would like to add the functionality to upload a picture with each contact. How can I add a FileUpload button to the cell table?
lufthansa747
  • 1,923
  • 3
  • 26
  • 39
0
votes
1 answer

Set FireDate of UILocalNotification based on the (Dynamic) value of Label

My problem is I have a Custom Cell which contains a label. The value of label would be fetched via webServices which would be in TIME .Initially if we go by static data i.e. for e.g.: 10:54 PM, then on click of that cell it should set me a reminder…
user2478518
0
votes
2 answers

How can I get a custom UITableViewCell from a TableView using cellForRowAtIndexPath?

I have a table in one of my views, I want to use the table to allow the user to input data. To do this I created a custom UITableViewCell which worked perfectly. My problem occurred when trying to get the text out of each cell. I have had a look…
Ben Toogood
  • 469
  • 4
  • 9
0
votes
3 answers

How to get UIView Controller of custom cell contained in

I have a view controller in that having a table view in that a Custom cell. I have a button in a custom cell MyViewController ---View ------TableView -------------Custom cell -------------------UIButton I want to implement the button action for…
0
votes
1 answer

Change in content of one cell changes other cells as well in UITableView

I have created a custom cell and added a uibutton on it. On tap of that button, Im setting that button selected which changes button's image. -(IBAction)btnInfoPressed:(id)sender { [btnInfo setSelected:YES]; } The above method is in the custom…
iAmd
  • 812
  • 1
  • 12
  • 22
0
votes
1 answer

cell.accessoryView image appearing when it shouldn't for reusable cells only

I am using custom cells where I set two images, an accessoryView image and some custom buttons. The accessoryView image shows up initially. When the user swipes the row, i hide the accessoryView image and unhide the buttons. When the user…
Jason
  • 1,787
  • 4
  • 29
  • 46
0
votes
3 answers

Set individual cell BackColor based on cell content in c#

I am inexperienced with c# and I am trying to change the background color of gridview cells based on their content. I want multiple cells in the same row to be able to be different colors. The gridview is generated fine but the colors are not…
Andrew O'Brien
  • 1,793
  • 1
  • 12
  • 24
0
votes
1 answer

SDWebImage issues: Cocoa error 513 and Unrecognized selector send to instance

I have implemented the SDWebImage exactly as the description (link) said using xcode 5, and it gives me no errors. This is what the piece of code looks like: CustomCell *customcell = [self.tableView cellForRowAtIndexPath:[NSIndexPath…
Joris416
  • 4,751
  • 5
  • 32
  • 59
0
votes
1 answer

How to show popover view from button in custom tableviewcell?

I'm developing an app in which the user can enter products and information on those products. All information on a products gets entered in a custom UITableViewCell. I also want to allow the user to add an image of products. To do that, I need to…
Joris416
  • 4,751
  • 5
  • 32
  • 59
0
votes
1 answer

Random display of UIImageView in UITableView cells when scrolling

I have a custom separator in every cell(added it in the IB), I want to delete/hide it based on a specific condition: -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ static NSString…
androniennn
  • 3,117
  • 11
  • 50
  • 107