Is there a way to change corner radius of UITableView in insetGrouped style? – Ios swift
Like This- Has anyone been in a similar situation?
Like This- Has anyone been in a similar situation?
I want to build a View with ZStack of cards which get info from an array. Cards have to swipe to the left and to the right by .gesture modifier, without any other buttons. What I want is when the…
I'm trying center subview. But it doesn't seem expected. How can I fix it? here is my codes private lazy var uploadButton: UIButton = { let button = UIButton() let innerView = UIView(frame: CGRect(x: 0, y: 0, width: 136, height:…
I'm looking for a way to fill a Set with the weeks that hold the first of any month for the current year. For example, since the first week of the year normally holds the first day in January, I…
I'm exposing my Swift structs as wrapped classes so I don't pollute my Swift API by converting structs to @objc classes. Since I can't use generics in @objc classes, I'm trying to eliminate some boilerplate code within a protocol to…
I upgraded my package chat_gpt_sdk to 2.0.4 and the flutter sdk to the latest version but now i get this error The argument type 'int' can't be assigned to the parameter type 'Duration'. I need to be on this version…
I am developing an iOS app using SwiftUI, and I'm experiencing graphical glitches when I use the indices of my state array in a ForEach loop instead of the elements themselves. Specifically, the UI elements in my list start to…
This nested ring UI works well but how can I code it so it scales whether its parent is very small or very large? import SwiftUI struct CustomGaugeStyleView: View { @State private var innerRingFill = 6.5 var body: some View…
I don't know a great way to describe this, but basically when I click on a button in a table view made up of the same reusable cell to view products in a certain category it's supposed to then load…
I'm getting really frustrated so I'm just posting it because I'm sure there's an easy answer but it makes no dang sense. I have this request to load products from a database self.fetchFlashDealsWebServiceCall() That request then sets my products, and…