Post

Replies

Boosts

Views

Activity

Reply to Free watchOS app with paid iOS companion
So you already have a paid-for app available that comes with a Watch app? Well, then your question is moot, isn't it? Your combination of iOS app and watchOS app seems fine as it is. From what I can see you use the Watch app to track your runs, and the iOS app merely holds them there for you? So yes, the iOS app compliments the Watch app. Nothing says the iOS app has to be the main player in an iOS/watchOS app combination.
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’22
Reply to @Environment broken in iOS widgets?
This is my code, and it works fine: @main struct WidgetEntry: Widget { public var body: some WidgetConfiguration { IntentConfiguration(kind: kWidgetKind, intent: DynamicEventSelectionIntent.self, provider: Provider() ) { entry in WidgetEntryView(entry: entry) } .configurationDisplayName(NSLocalizedString("AddingWidget_Title", comment: "Adding the Widget")) .description(NSLocalizedString("AddingWidget_Description", comment: "Adding the Widget")) .supportedFamilies([.accessoryCircular, .accessoryInline, .accessoryRectangular, .systemSmall, .systemMedium]) } } struct WidgetEntryView: View { var entry: Provider.Entry @Environment(\.widgetFamily) var family @ViewBuilder var body: some View { switch family { case .accessoryCircular, .accessoryInline, .accessoryRectangular: LockScreenWidgetView(event: entry.event) case .systemSmall: SmallWidgetView(event: entry.event) case .systemMedium, .systemLarge, .systemExtraLarge: MediumWidgetView(event: entry.event) @unknown default: MediumWidgetView(event: entry.event) } } } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’22
Reply to Do we need to create screen to get permission for data sharing in iOS app?
Personally Identifiable information (PII) really shouldn't be shared with a third party unless you explicitly ask the user's permission, which is different from App Tracking Transparency. ATT stops your app from accessing the phone's unique identifier so advertisers can't track you as a specific individual user. If the user says no to sharing their PII, will you respect that? Will your app continue to function correctly if you don't share their PII with your partner company? Your app details that show in the App Store definitely have to tell users you're going to share their details. I have to say, unless it's something that specifically needs my PII like an app that books a hire car, I wouldn't go anywhere near such an app.
Sep ’22
Reply to iMac Volume Hash Mismatch disk2s5
That's a bit extreme. Get in touch with the store where you bought the computer and see if they can do anything. If it was from an Apple Store they'll probably be very helpful in trying to fix your problem despite it being a week out of warranty. These things happen. Don't burn your house down just because there's a leak in the pipework.
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’22