Post

Replies

Boosts

Views

Activity

Reply to WatchOS Notifications Firing Late
iOS decides if to forward the notification to a >connected watch< based on a number of factors such as does the watch have it's own token in order to get messages directly etc. https://developer.apple.com/documentation/watchos-apps/taking-advantage-of-notification-forwarding?changes=_9 https://developer.apple.com/documentation/watchos-apps/notifications?changes=_9 https://developer.apple.com/documentation/watchos-apps/enabling-and-receiving-notifications?changes=_9
Topic: UI Frameworks SubTopic: SwiftUI Tags:
May ’23
Reply to Is there an API to get the iOS Rapid Security Response version?
Here you go: May the 9th be with you! Getting the suffix information is walled by private APIs. The only way to get it is to use the string version of process info and probably perform a regex to extract and other string fun stuff. Sean! import Foundation class VersionModel: ObservableObject { init() {} @Published var value: String = { let process = ProcessInfo.processInfo.operatingSystemVersionString return process }() } import SwiftUI struct ContentView: View { @EnvironmentObject var model: VersionModel var body: some View { VStack { Image(systemName: "globe") .imageScale(.large) .foregroundColor(.accentColor) Text("Version \(model.value)!") } .padding() } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() .environmentObject(VersionModel()) } } import SwiftUI @main struct VersionInfoApp: App { @StateObject var model = VersionModel() var body: some Scene { WindowGroup { ContentView() .environmentObject(model) } } }
Topic: Programming Languages SubTopic: Swift Tags:
May ’23
Reply to Core Midi sending wrong usb packets on MacOS 13.3.1
Then you will most likely need to update your applications if Apple has addressed issues in the API.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to WatchOS Notifications Firing Late
iOS decides if to forward the notification to a >connected watch< based on a number of factors such as does the watch have it's own token in order to get messages directly etc. https://developer.apple.com/documentation/watchos-apps/taking-advantage-of-notification-forwarding?changes=_9 https://developer.apple.com/documentation/watchos-apps/notifications?changes=_9 https://developer.apple.com/documentation/watchos-apps/enabling-and-receiving-notifications?changes=_9
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to ESP32 Bluetooth Advertisement
For questions about using Apple hardware and services, visit Apple Support Communities ›
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to Is there an API to get the iOS Rapid Security Response version?
Here you go: May the 9th be with you! Getting the suffix information is walled by private APIs. The only way to get it is to use the string version of process info and probably perform a regex to extract and other string fun stuff. Sean! import Foundation class VersionModel: ObservableObject { init() {} @Published var value: String = { let process = ProcessInfo.processInfo.operatingSystemVersionString return process }() } import SwiftUI struct ContentView: View { @EnvironmentObject var model: VersionModel var body: some View { VStack { Image(systemName: "globe") .imageScale(.large) .foregroundColor(.accentColor) Text("Version \(model.value)!") } .padding() } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() .environmentObject(VersionModel()) } } import SwiftUI @main struct VersionInfoApp: App { @StateObject var model = VersionModel() var body: some Scene { WindowGroup { ContentView() .environmentObject(model) } } }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to Animated blueprint of Solid-State Lithium Metal Battery
This is not github
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to Upgraded Plasma Engine
Is there a question somewhere in your post?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to Call Recording in IOS 2023
Many before you have tried, but it is not allowed for privacy concerns.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to Setting IAP so that monies are transferred to Client Bank Account
You have to transfer the funds to them or have the client set up an Apple Developer Account with their information to publish the app under their name and receive the funds directly should you be hit by a bus they will still be paid and not your estate.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to Metal on Intel graphics: potential bug when using global constant arrays?
Because you are bypassing the processing of the values to any colour correction taking place after the shader is compiled.
Topic: Graphics & Games SubTopic: General Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to ARKit stops providing Audio
Sorry, you'll have to post more code pertinent to what is giving trouble and details on what you're using the ARView for.
Topic: Spatial Computing SubTopic: ARKit Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to UDP LAN networking works in simulation but not iPhone device
It requires an entitlement from Apple. https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_developer_networking_networkextension https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_developer_networking_multicast
Replies
Boosts
Views
Activity
Apr ’23
Reply to Finder Stops Responding Using Ventura 13.3.1
I had this issue on the M2 shortly after the 13.3.1 update, but it hasn't happened recently.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Apr ’23
Reply to App Store Name Unavailable
Welcome to the AppStore. You are one out of 2^64 developers submitting applications. You should have created your AppStore record months ago to reserve the name. Unfortunately, you will have to rebrand because the person with the first use is the copyright holder, as there was no proof you published the name first to stake a claim.
Replies
Boosts
Views
Activity
Apr ’23
Reply to xcode erorr
How many main() functions and global variables with the same names do you have besides the one in main.cpp?
Replies
Boosts
Views
Activity
Apr ’23
Reply to Simulator not reflecting simctl override --time command as expected
I tried it on the iPhone 12 iOS 15.4 sim, and it works. So it looks like the internals of the sim for 16+ have changed, making the commands useless.
Replies
Boosts
Views
Activity
Apr ’23