118,522 questions
0
votes
0
answers
30
views
Copy/Paste tab-separated columns to Numbers (Mac) in separated cells
I am trying to copy/paste the output of my terminal from VS code into three columns (datetime, latitude, longitude) in a .numbers table.
While Excel has had not trouble putting the output in three ...
Advice
0
votes
0
replies
18
views
Managed Asset Pack not found by TestFlight reviewer
We have a managed (i.e., Apple-hosted) on-demand asset pack (via Managed Background Assets) that we download at the start of our iOS/macOS app. We first present the user with the download size and the ...
Advice
0
votes
3
replies
68
views
How to make dynamic NSImage icon based on SF Symbol name
Apple is using dynamic icons using SF Symbol names together with ISGraphicIconConfiguration dictionary in System Settings on macOS. They reflect the current icon & Widget style (normal/dark/clear/...
-1
votes
0
answers
81
views
How to run arm64 image on qemu on macOS? [closed]
qemu-system-aarch64 seems to require a UEFI file to run, but unable so far to build (or download, but prefer building) one. Trying to build edk2 from git:
git clone https://github.com/tianocore/edk2....
-3
votes
0
answers
72
views
Brew can't find python dependency [closed]
Trying to install qemu on mac, which requires a python dependency "tomli". I've not been able to install it such that it's accessible to brew.
If installing via pip3, there's an error saying ...
0
votes
1
answer
85
views
Problems using PyObjC to resolve aliases
I'm trying to use PyObjC (a bridge between the Python and Objective-C), version 12.1_3, to find the original file of a Finder alias, but I can't seem to get it right:
Python 3.13.13 (main, Apr 8 2026,...
3
votes
3
answers
137
views
Match multiple keywords from cell A then return all matches in cell B
So I am trying to create a formula that will automatically match all of the keywords from a source cell with their corresponding ID codes, then return all of the matched ID codes in another cell. How ...
0
votes
0
answers
44
views
Error rebuilding Spotlight indices with shell script
Spotlight wasn't finding stuff I knew was there, so I ran this Applescript:
do shell script"sudo mdutil -Ea"with administrator privileges
and got this error:
Error: CoreSpotlight reset ...
Best practices
0
votes
2
replies
59
views
Is Apple's UCCompareCollationKeys() a strong or a weak ordering?
I'm wondering whether the result of comparing collation sort keys (= already pre-processed strings for faster collation-compatible sorting/searching) is a strong or weak ordering. The implementation ...
Advice
0
votes
1
replies
66
views
Single sign-in for Google OAuth and Gmail in WebView on macOS
I’m building a macOS app in SwiftUI that loads Gmail in a WebView while also using the Gmail API for some additional features (e.g., unread counts, notifications, etc.).
Since Google Blocks OAuth ...
-2
votes
0
answers
57
views
MSAL login with Developer ID signed macOS app
I would like to have MSAL login fully working in a Developer ID signed macOS application.
I am using the following library for adding MSAL support to my macOS app : https://github.com/AzureAD/...
1
vote
1
answer
129
views
How to get the form picker style without using form?
Form picker (no button, aligns to right).
Outside form, the picker .menu style aligns left and width expands to widest content in menu with button-pill as container for selections.
Is it possible to ...
1
vote
1
answer
89
views
scrollTo( ... anchor: .top) not working as expected
I'm working on MacOS 26.1 and Xcode 26.2.
I'm wring a software simulator of a computer on Mac and want to have a panel that shows the current stack (which grows down). Note, my memory array is in ...
0
votes
1
answer
94
views
Picker issue when selecting a nested Picker
I started with the following code which shows a Picker :
import SwiftUI
struct ContentView: View {
enum MenuOption: String, CaseIterable {
case sort = "Sort"
case search ...
-2
votes
1
answer
112
views
Chrome command-line switch --force-webrtc-ip-handling-policy not blocking IP leakage in Release build [closed]
I am trying to launch an isolated Google Chrome instance on macOS with a specific user-data-dir and proxy settings. My goal is to restrict WebRTC to only use the configured proxy (hide the real public ...