Post

Replies

Boosts

Views

Activity

Reply to how to inhibit -fprofile-instr-generate passed to linker
It is caused by code coverage being injected by test plan that is autogenerated in scheme. Disabling code coverage for driver target and deleting test scheme will fix the problem. However, you might want to have testing with your project. But it looks like any test plan inside same project will inject profile-instr-generate. Not sure how to have testing for main app, and no code coverage flag injected for driver. Seems like bug in Xcode.
5d
Reply to AVSpeechSynthesizer is broken on iOS 17 in Xcode 15
Well, checking on Xcode Version 15.0 (15A240d), and behavior is like this: I see this in the log: #FactoryInstall Unable to query results, error: 5 Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder -you have to have patience if you have enabled breakpoints and active debug session, because you need to pass 12 exceptions -if you are lucky and xcode does not freeze, you will eventually hear the sound. So the best at the moment is to switch off breakpoints for "Swift Error" (delete it from list of breakpoints) Not ideal, but it works for now. I filled the bug report.
Topic: Media Technologies SubTopic: Audio Tags:
Sep ’23
Reply to how to inhibit -fprofile-instr-generate passed to linker
It is actually possible to have a tests but no code coverage. In test plan find Configurations. And there is a section "Code coverage". Default it is ON. Uncheck "Gather code coverage" to swift it OFF. Now it is a bit better. You can have a tests, but no code coverage.
Replies
Boosts
Views
Activity
5d
Reply to how to inhibit -fprofile-instr-generate passed to linker
It is caused by code coverage being injected by test plan that is autogenerated in scheme. Disabling code coverage for driver target and deleting test scheme will fix the problem. However, you might want to have testing with your project. But it looks like any test plan inside same project will inject profile-instr-generate. Not sure how to have testing for main app, and no code coverage flag injected for driver. Seems like bug in Xcode.
Replies
Boosts
Views
Activity
5d
Reply to To Use Xcode Intelligence Features should I partition my drive?
Local LLMs with LM Studio works in Xcode 26 beta 1 on UTM virtual machine with Tahoe installed. ChatGPT does not work as on VM you are unable to setup Apple Intelligence. I got quite a few crashes as well. Overall, this has huge potential.
Replies
Boosts
Views
Activity
Jun ’25
Reply to macOS 26 (Tahoe) lacks Wi‑Fi Aware support — any roadmap or plans?
Yes, I basically had same question. Why it is missing from Mac? What happens if iPad app is running on MacOS? Why when both devices have required HW you are introducing such SW limitations?
Replies
Boosts
Views
Activity
Jun ’25
Reply to App was crashing in xcode 16 due to Quicklook UI framework
from macOS Sequoia 15.1 RC Release Notes Resolved Issues Fixed: Back-deploying apps that link QuickLookUI to macOS 11 or earlier might crash. (133213738) (FB14667312) So re-compile with Xcode 16 + macOS 15.1..and it should work
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to Considering Alternatives to SwiftUI for a Complex App
for iOS..use it..it is mostly fine, but for macOS...not so much. constant performance problems. New OS release == new problems.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to Is @ObservationIgnored necessary for private var?
Only properties that are referenced in view and "registered" are accessed. From my experience it makes sense to add ObservationIgnored when you as a programmer really don't want that property to be tracked by view by error.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to Anti Virus for macOS Sequoia
After last fiasco in Windows world (CrowdStrike) I would say that adding anything "Anti virus" is just adding another vector of attack to your system. Install apps from trusted sources only and you should be fine.
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to Readme markdown not rendering in Xcode
The hack with .plist file I saw in one of the apple's examples. I was wondering how they did it. Unfortunately it is not usable for any other md files. It is good for readme.md only.
Replies
Boosts
Views
Activity
Nov ’23
Reply to AVSpeechSynthesizer is broken on iOS 17 in Xcode 15
Well, checking on Xcode Version 15.0 (15A240d), and behavior is like this: I see this in the log: #FactoryInstall Unable to query results, error: 5 Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder Unable to list voice folder -you have to have patience if you have enabled breakpoints and active debug session, because you need to pass 12 exceptions -if you are lucky and xcode does not freeze, you will eventually hear the sound. So the best at the moment is to switch off breakpoints for "Swift Error" (delete it from list of breakpoints) Not ideal, but it works for now. I filled the bug report.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Sep ’23
Reply to Resolving package graph on every change
it is still happening in 14.3.1 and also 15 beta 2. Resolving package graph on slower internet is full of errors about unresolved dependencies. But yes, it works on 1GB fiber optic connection.. :( This part of package resolving process is clearly not ideal/finished.
Replies
Boosts
Views
Activity
Jul ’23
Reply to ASWebAuthenticationSession callbackURLScheme
That port number might be a problem. http://localhost:5000/ios/hola?hola=hola -> http://localhost/ios/hola?hola=hola
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’22