Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
79 views

I do below in my app: myTableView.reloadRows(at: indexPathsToReload, with: .fade) The reload basically expands/collapses the row (a UILabel's text is expanded or collapsed) causing the height to ...
sudoExclamationExclamation's user avatar
2 votes
1 answer
144 views

I have a UIKit app where chat messages are displayed in a UITableView. One of the message types is a cell that contains another UITableView (a nested table view). The nested table view needs to size ...
Karthikeyan Muthu's user avatar
0 votes
2 answers
66 views

I have a UITableView with cells that display chat messages. Some messages contain code blocks which I render inside the cell by dynamically creating and adding custom CodeBlockView instances to a ...
Ahsan Murtaza's user avatar
0 votes
1 answer
44 views

I'm a bit of a newbie and I may be out of my depth here, but I am running into an issue that I can't seem to crack. I have a prototype tableview cell in which I am using an array to show an image (...
Wasko Ltd's user avatar
1 vote
1 answer
76 views

We are trying to display an image in a UILabel view using Swift 5. Here is the code that we have. Unfortunately, instead of the entire image displayed at 75% of width of screen and 75% height of ...
Jack tileman's user avatar
0 votes
2 answers
78 views

I have a UITableViewController with UITableViewCells containing a UICollectionViewController. Each UICollectionViewController, also contains a cell containing a UIViewController of varying size. ...
Erzie's user avatar
  • 1
0 votes
2 answers
64 views

I have been working to make a weather feature in my app, which takes API data from Visual Crossing. The issue is that the data is extracted into my app in a seperate function then that which sets my ...
Train Lover's user avatar
0 votes
0 answers
48 views

How to Detect Scroll Completion Before Calculating Frame in Swift (iOS)? I am working on an iOS application where I have a screen containing both a UICollectionView and a UITableView. The ...
Hakan Or's user avatar
-1 votes
1 answer
40 views

I have been trying to create a "saved features" tab for my app. I embedded a button into my table view cell (which had a star icon - FavouriteStatusButton). When selected it would append the ...
Train Lover's user avatar
0 votes
0 answers
103 views

I have a UITableViewController with a UINavigationBar with the property : navigationBar.prefersLargeTitles = true navigationItem.largeTitleDisplayMode = .automatic I add in the UITableViewController ...
David Goncalves's user avatar
-1 votes
1 answer
54 views

Created a custom UITableViewHeaderFooterView: class TableSectionHeader: UITableViewHeaderFooterView { let title = UILabel() override init(reuseIdentifier: String?) { super.init(reuseIdentifier: ...
swainwri's user avatar
0 votes
0 answers
49 views

Currently my spreadsheet has cells for data entry and if they are too low the keyboard overlaps them. I'm trying to make the table slide to the top when the keyboard appears and the input field ...
IDontKnow's user avatar
0 votes
2 answers
50 views

I have a UITableView and I want to display a dynamic header at the top of the table. I am trying to do this using tableHeaderView. The header contains a titleLabel and a descriptionLabel arranged ...
Hakan Or's user avatar
0 votes
1 answer
132 views

I have an app with a UITableView. We're gradually converting to SwiftUI, so the UITableView is basically a collection of SwiftUI views. I was able to get the background to appear as a gradient using ...
kbartlett's user avatar
  • 160
0 votes
1 answer
51 views

I'm trying to make a reusable UITableView. I will pass in generics for item and UITableViewCell. However am having an error when I try to cast my cell to C and am not sure how else to fix this. ...
Moo33's user avatar
  • 1,283
1 vote
1 answer
225 views

Good? I have a problem with the implementation of a UICollectionview intro a UITableViewCell, because the height calculation of this component does not work properly, even though using ...
ramonfsk's user avatar
0 votes
1 answer
53 views

I am applying a mask to an image in a custom table cell. The mask works correctly but as soon as I scroll the table I get a Fatal error: Unexpectedly found nil while unwrapping an Optional value on ...
Eatton's user avatar
  • 577
0 votes
1 answer
42 views

I am making my own custom swipeable cells where user can swipe a cell to show options. Currently all my subviews are added to the contentView of the cell. And I have added my options to the ...
sudoExclamationExclamation's user avatar
1 vote
1 answer
66 views

When I run my iOS app on Apple Silicon Mac (ARM) in "Designed for iPad" mode, I'm not able to use a UISlider contained in a reorderable tableview cell. Dragging the slider triggers a reorder ...
user1443996's user avatar
0 votes
0 answers
20 views

InsertingRows fails animation if the user is slightly scrolled. https://gist.github.com/patryk-sredzinski/cbbf77a35e31dea707e5349194a10828 Tap on Insert to add a row - observe how it nicely scrolls ...
Patryk Średziński's user avatar
1 vote
0 answers
43 views

I'm trying to take a snapshot of UITextView inside UITableViewCell.The code is as below. class MyTableViewCell: UITableViewCell {       @IBOutlet weak var myTextView: UITextView!       func bind(){ ...
supermonkey's user avatar
0 votes
1 answer
76 views

I have added a VStack, I am adding 3 elements like Top , middle and bottom and adding shadow respectively. Problem is I am getting 1px gap between the elements even after adding spacing as 0. Top ...
Neha Pant's user avatar
-1 votes
1 answer
66 views

I need two images buttons to be clickable inside a certain cell (not all cells), instead of the text. How can I do this? I have the cell extension, and the image "the_icon" exists (I can see ...
The Outstanding Question Asker's user avatar
0 votes
1 answer
87 views

When the user is reordering their items and dragging on a cell, I want the cell to have a thin material as background. However, when the user isn't dragging any cells, the background would be clear to ...
User95797654974's user avatar
0 votes
0 answers
42 views

There is a UITableView with 100 sections with headerTitle and 1 cell in each. Scroll down few cells Rotate screen Scroll up – scrolling is jittery and titleForHeaderInSection causes it. Any idea how ...
X.app's user avatar
  • 126

1
2 3 4 5
1287