Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [custom-cell]

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

custom-cell
0 votes
1 answer
17 views

Swift UIKit ordering and positioning with constraints inside a custom table cell [duplicate]

I have a custom table cell, and all I want to do is insert two button images inside it. This is my code: gb = UIButton() gb.setImage(UIImage(named: "skejt_zelena_polutka"), for: .normal) gb....
Vladimir Despotovic's user avatar
0 votes
1 answer
53 views

Conditional formatting for matching names based on dropdown with dates

I have a table with a list of 100 desks and 14 columns with dates. In each column I allocate team members for the specific date on top I've made additional columns with each team's staff members. I ...
Dimitar Ivanov's user avatar
0 votes
1 answer
71 views

No input textbox shown for typing when agRichSelectCellEditor is used

I was trying to follow the tutorial (https://www.ag-grid.com/javascript-data-grid/provided-cell-editors-rich-select/) to include a column with agRichSelectCellEditor so users can select the cell which ...
Gab's user avatar
  • 23
0 votes
0 answers
26 views

Is there a way to edit the dropdown list of an excel spreadsheet?

I'm using data validation to create a dropdown list from a specific range of cells and that works normally, but it would be really nice if I can add some color to the dropdown list itself. This is ...
Shawn Mitchell's user avatar
0 votes
0 answers
81 views

UITableView Cell is getting focused even when accessibility is disabled in iOS

Accessibility is disabled for tableview cell but it is getting selected.Tableview cell is added as a subview to a view and its accessibility is also disabled.The accessibility value is coming as empty ...
poornima r's user avatar
2 votes
0 answers
54 views

Custom cell formatting in Excel for continuous values in 4 discretised value ranges

The following initial situation: I have numerical values in an Excel column. However, I would like to reformat them so that the possible range of values is discretised into 4 sub-ranges and a text is ...
DevArchitectMaster's user avatar
0 votes
1 answer
77 views

UITableview cell overlap on scroll

Some odd behaviour. Got a UITableview with dynamic custom cell. As part of the custom cell is a UIStackView which contains a dynamic number of buttons. These display as expected. See image 1 However, ...
Nicholas Farmer's user avatar
0 votes
0 answers
33 views

UITableView Custom Cell Auto-Resizing with TextView & ImageView

I have a table view with a custom cell that will display comments from users. In the view conrtoller where the table view is located, I make a network call to fetch the comments and the related images ...
Mbasa's user avatar
  • 11
0 votes
1 answer
74 views

Can not add spacing between UITableViewCells

I am currently working on a project where I will be using an API to receive some suggestions, which I need to display as a tableview. My goal is to add a 20-point margin between the cells in the ...
anilsezer's user avatar
1 vote
1 answer
60 views

How to properly add an image programmatically in a customcell objective-c

I'm trying to add an image programmatically in a custom tableviewcell but it display it like this: I would like it like this: (like a notification) Here is my code: ViewController.m @implementation ...
Six's user avatar
  • 29
0 votes
1 answer
38 views

Getting nil while trying to access all cells data when cells are beyond screen (not visible) in Tableview iOS

I have 6 custom cells in my tableview. And each cells data I need to check whether user filled or not on action of Submit button and I need to pass those information to server if all the cells info ...
Anilkumar iOS Developer's user avatar
1 vote
0 answers
183 views

create custom Cell by using core data in swiftUI

I want to create a custom Cell for my app with swiftUI and i can't put it in textView. I dont want to use ForEach. In my core data i have 1 entity: FacturationCoreData. In this entity i have 3 ...
Erfan Alipour's user avatar
1 vote
0 answers
70 views

Unable to see Table View and Custom Cells in Simulator

I'm new to Xcode and trying to finish an assignment for a class in which I have 2 view controllers. I have no issues seeing my table view on the first view controller but unable to see the table view ...
Liz Fleming's user avatar
0 votes
1 answer
519 views

Adding a gesture recognizer to both custom tableview cell and subviews on cell is not working

I have added gesture recognisers to subviews on my tableview custom cell . Enabled isUserInteractionEnabled for UIElements let imageView: UIImageView = { let imageView = UIImageView() ...
AppleDeveloper's user avatar
0 votes
1 answer
38 views

Custom cell is registered and used in TableView controller but in app is default cell

I want to use my custom cell in UITableViewController which is used in TableViewController. I register custom cell and used it in cellForRowAt method. Cell is "created" in storyboard. All ...
Igor Ševtšenko's user avatar

15 30 50 per page
1
2 3 4 5
51