0 votes
2 replies
53 views
How to scan a folder asynchronously in SwiftUI 6?
I can do it with Swift 5, but I do not know how to fix the compilation error with Swift 6. I browsed the net for weeks, made tests and tests, but no solution. Could you help please? I wrote a small ...
-2 votes
0 answers
88 views
Which overloaded function is selected [closed]
Given the following code: func f(a: Int, _ b: Int = 0) { print("1 \(a + b)") } func f(a: Int) { print("2 \(a)") } f(a: 42) It prints ...
0 votes
1 replies
55 views
Can I Use Swift 5 SDKs in Swift6 Codebase Smoothly?
I want to migrate to swift 6 from swift 5. My app has multiple SDKs which are using Swift 5. My question is that will it cause any issue in terms of app build or performance? I have read that Swift 6 ...
0 votes
0 answers
101 views
SwiftUI MapKit- Pitch
I'm building a navigation app and I want the map to follow the user's location and heading with a specific pitch (e.g. 60 degrees...) , similar to how Apple Maps looks during navigation, or Google. ...
1 vote
1 replies
39 views
A way to sync notes with Apple Notes
I am currently working on a yet another notes ios app. I was looking for a way to sync the notes from my application with apple notes. is there a way for that? The app I am working on should be able ...
0 votes
0 replies
70 views
Tree-like data structure visualization/representation/drawing
There's a tree data structure with string nodes. Is there a framework/library to draw this structured text tree into graphic context (CGContext)? it's about calculating correct layout to represent it ...