566 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
83
views
TaskGroup is not running in parallel with iOS 15
Background
My app is a puzzle game for number puzzles that are derived from a Latin square. The puzzles are not Sudoku puzzles, but similar in some ways. Currently, the app runs on iOS 15 and later. I'...
0
votes
0
answers
175
views
Flutter 3.3.2 iOS Build Fails on Brand New Project with Xcode 16.3 and iOS 15.5
I'm encountering an issue with a brand new Flutter project created using Flutter SDK version 3.3.2. The project runs perfectly on Android, but it fails to build for iOS without any changes to the ...
2
votes
0
answers
201
views
Speech Recognition Result: isFinal Property is always false
I tried the SpeechRecognitionAPI on Safari with iPhone7 and iPhoneSE gen3.
"isFinal" property of SpeechRecognitionResult is always "false".
I have tried it on multiple devices, but ...
0
votes
1
answer
247
views
NavigationStack for iOS15.0+
I am trying to create a kind of Coordinator that stacks the views while navigating and make it compatible from iOS 15.0.
Here is my code that works for the first push to the next view but after going ...
0
votes
1
answer
631
views
Set Size for UIButton with new iOS15 Configuration Approach
My goal is to add button to the right hand side of a section header in a UITableView.
However, when I made my new target iOS15, I found that I had to adopt UIButton configuration to set the padding to ...
1
vote
1
answer
3k
views
How to remake UIButton to use UIButton.Configuration
In the context of updating legacy code to modern standards, I have encountered a scenario where I need to refactor a UIButton creation and configuration process. The original implementation is as ...
1
vote
2
answers
2k
views
Why is my app crashing with dyld "Symbol not found" for SwiftUI or Swift symbols on iOS 15, but not on iOS 16 or iOS 17 using XCode 15.0.1?
We have a situation where our app compiles and links in Xcode 15.1, but crashes without a stack trace when run in a simulator or real device running iOS 15.x. The minimum deployment target is set to ...
1
vote
1
answer
495
views
React native projects not running in IOS
This is my error coming when I'm running the project in IOS 15 devices. It's not installing pod(pod install), I tried too many things but still I can't get any solution.
englishmuni@Englishs-Mac-mini ...
2
votes
1
answer
2k
views
Widgets compiled from Xcode 15 are not available on iOS 16, while they are on iOS 15 and 17
Why widgets from iOS app are not available on the list on iOS 16, while on ios 17 and 15 are available?
This is how they are defined in widget bundle:
import WidgetKit
import SwiftUI
@main
struct ...
-1
votes
1
answer
691
views
SwiftUI ToolbarItem disabled state isn't updated on iOS 15 when ObservedObject is updated
I have a custom navigation bar view that's used throughout my app. To make this reusable, I've created a ToolbarContent conformant struct that implements this custom navigation bar. This view contains ...
0
votes
1
answer
1k
views
How to change the background of the status bar for iOS 15 devices in swift 5?
I was changing the background color of the status bar.
I tried to use the following code but I get warnings in Xcode 14 as my app support iOS 15 and above.
func setupStatusBar() {
if let ...
0
votes
0
answers
1k
views
How can I create stack bar chart in SwiftUI using iOS 15
I am new in SwiftUI and I am facing creating stack bar chart using iOS 15 and SwiftUI
My code is like this
struct StackedBarChartView: View {
let dataPoints: [String]
let dataSets: [[Int]]
...
Muju's user avatar
- 1,029
0
votes
1
answer
1k
views
UIKit, make UIMenu and preview from UIContextMenuInteraction dynamic (in SwiftUI through UIViewRepresentable)
I need to have a .contextMenu modifier that allows me to show a custom preview. While this is natively possible in SwiftUI from iOS 16.0+, I still need to provide support to iOS 15.0+ so I'm currently ...
0
votes
2
answers
90
views
SwiftUI Save ManagedObjectContext after Toggle
In my SwiftUI / iOS 15+ app, I have a toolbar displaying a button which is meant to toggle the "bookmarked" property of an "item" object. The item is passed in as a Binding, as ...
0
votes
0
answers
147
views
Delivered local notifications not shown in notification center
I have a SwiftUI app. I created a NotificationCenter class to deliver local notifications, which includes the following function.
@MainActor
struct NotificationCenter {
// Remove deleted items ...