Search results for

İOS 26 beta battery %1

250,964 results found

Post

Replies

Boosts

Views

Activity

Reply to BUG: Store kit configuration file processing macOS
Here's the code. It works on iOS/iPadOS but not macOS for the same .storekit file??? import SwiftUI import StoreKit public enum License: String, CaseIterable, Identifiable { public var id: String { self.rawValue } case subscriptionLifetimePremium = subscription.lifetime case subscriptionYearlyPremium = subscription.yearly case subscriptionMonthlyPremium = subscription.monthly } struct ContentView: View { var body: some View { VStack { Image(systemName: globe) .imageScale(.large) .foregroundStyle(.tint) Button(StoreKit Test) { Task { @MainActor in // Request our offers from the app store let productIDs = License.allCases.map { $0.rawValue } print(productIDs: (productIDs)) let productsOffered = try await Product.products(for: Set(productIDs)) print(productsOffered: (productsOffered)) } } } .padding() } }```
Topic: App & System Services SubTopic: StoreKit Tags:
5d
Discrepancy between App Store Server API `expiresDate` and iOS Settings subscription expiration date
I am developing an iOS app that uses App Store Server API (v2) for auto-renewable subscriptions. I noticed a discrepancy between the expiration date returned by the API and the date displayed in iPhone Settings > Subscriptions: App Store Server API expiresDate: 2025-09-12T12:10:25 (KST) iOS Settings > Subscriptions: 2025-09-11 (one day earlier) My understanding: The API’s expiresDate is the precise UTC timestamp. The Settings UI might display the last full calendar day for UX purposes. Questions: Is this behavior (UI showing one day earlier) an intentional Apple policy? If so, is there any official documentation or guideline explaining this behavior? Should developers always rely on the API’s expiresDate for subscription state management? This discrepancy is confusing for both developers and end users, so any clarification or official reference would be greatly appreciated.
0
0
63
5d
Xcode 26 Coding Assistant & Anthropic
I've been trying to use Antrhopic with Xcode 26 RC and continue to run into this error: No Data/Bytes for request: https://api.anthropic.com/v1/messages Once I get it, all prompts fail even a simple Hello that worked a moment ago returns the error message. Restarting Xcode and it returns to normal till I hit that error again. Any ideas on what's going on?
0
0
76
5d
Reply to A few questions about allowed-os-versions and os-version in Distribution Definition files
[quote='800331021, packagesdev, /thread/800331, /profile/packagesdev'] Also why is there a tag for InstallerJS and not one for Installation in the Developer Forums? [/quote] Again with the why questions (-: Seriously though, I agree that there should be a tag for Mac installer packages. Although I’d probably call it Mac Installer rather than just Installation, because otherwise it’ll get flooded with iOS stuff. I can’t fix this immediately, but I’ve put it on my to-do list so that it doesn’t slip through the cracks. [quote='800331021, packagesdev, /thread/800331, /profile/packagesdev'] Has this element always worked correctly in the past? [/quote] Clearly no, in that you’re seeing it fail on 10.14. As to what you should do about this, it depends on whether you actually need to support 10.14 or earlier systems? [quote='800331021, packagesdev, /thread/800331, /profile/packagesdev'] Generally speaking, this documentation is missing examples for a lot of the elements. [/quote] It’s also in the D
5d
Reply to Dynamically changing app icon
This is is going to be tricky. An app’s icon is part of its bundle, and thus modify the icon will break the seal on the code signature. You don’t want to leave the user with an app with a broken code signature because sooner or later Gatekeeper look at the app, notice the broken signature, and kvetch. Now, what you could do is something like: Build, sign, and notarise all the variants of your app. From those variants, construct an installer that only contain one primary variant of your app and the diffs for all the other variants. Have that installer install the primary and then apply the relevants diffs. The end result is an app that’s correctly signed and notarised, and thus unlikely to hit notary problems. However, doing this is quite a bit of work. The key problems is that critical parts of the code signature are stored within the app’s main executable Mach-O image. If you store the diffs as a list of files, you’ll need N copies of the main executable, which presumably is quite large. There are w
Topic: App & System Services SubTopic: General Tags:
5d
Reply to Xcode not recognizing approved User Assigned Device Name capability in provisioning profile
The majority of issues like this are caused by limitations imposed on the managed capability. For example: You might have been granted it for development only. You might have been granted it for a specific App ID. See Finding a Capability’s Distribution Restrictions for info on how to investigate the first point. ps If this is Team ID 2________2, my view of our records shows that: The capability is limited to single App ID, 2________2.n__.r____.a__. And to Development and Ad Hoc distribution, not for the App Store distribution you’d need to actually ship your app on the store. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
5d
A few questions about allowed-os-versions and os-version in Distribution Definition files
In the archived documentation for Distribution Definition files (https://developer.apple.com/library/archive/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html), the allowed-os-versions and os-version element are partially documented. I have a few questions about these elements: allowed-os-versions The documentation states: Availability: Available in OS X v10.6.6 and later. Has this element always worked correctly in the past? I'm asking because it does not seem to work correctly on OS X v10.14 for the min attribute of a sub os-version element. os-version The documentation states: This element is designed for you to use a specific OS version number for the min attribute, and a major OS version number for the before attribute. The expectation is that you will know an exact minimum version but not an exact major version. This keeps you from having to guess the last minor revision before the next major revision, as you would have to do if the before attribute were
2
0
89
5d
Reply to iOS 26 Safari & WebView: VisualViewport.offsetTop not reset after keyboard dismissal, causing fixed elements misplacement
Facing the same exact issue. We have a bottom navigation bar that is fixed with bottom: 0. After closing the keyboard on an input, the navigation bar is no longer at the very bottom while scrolling down. I submitted feedback FB20249802. find a working example here: https://stackoverflow.com/questions/79758083/ios-26-safari-visualviewport-change-after-dismissing-keyboard
Topic: Safari & Web SubTopic: General Tags:
5d
Chaotic keyboard frame notification in windowed app in iOS 26
I have a simple task, to measure the height of the overlapping area occupied by the keyboard in the current view. In the attached images, I use it to position a UITextView (red) above the keyboard, as a test. The keyboard displays an inputAccessoryView (yellow) when editing a text view, but it’s also summoned by a UIFindInteraction, which shows a search bar above the keyboard. When measuring the keyboard, I need to account for either the accessory view or the search bar, basically, the total keyboard height including any extra views above it. I use the usual algorithm: the keyboard frame from UIResponder.keyboardWillShowNotification (documented as being in screen coordinates) is converted to my view’s coordinates and intersected with the view’s bounds to get the overlapping height. The first issue: in windowed mode, the keyboard frame reports a negative origin.x (e.g. -247), even though in screen coordinates it should start at 0. I display the raw frame in the navbar, as shown in the first screenshot. I then
0
0
128
5d
Error accessing backing data on deleted item in detached task
I have been working on an app for the past few months, and one issue that I have encountered a few times is an error where quick subsequent deletions cause issues with detached tasks that are triggered from some user actions. Inside a Task.detached, I am building an isolated model context, querying for LineItems, then iterating over those items. The crash happens when accessing a Transaction property through a relationship. var byTransactionId: [UUID: [LineItem]] { return Dictionary(grouping: self) { item in item.transaction?.id ?? UUID() } } In this case, the transaction has been deleted, but the relationship existed when the fetch occurred, so the transaction value is non-nil. The crash occurs when accessing the id. This is the error. SwiftData/BackingData.swift:1035: Fatal error: This model instance was invalidated because its backing data could no longer be found the store. PersistentIdentifier(id: SwiftData.PersistentIdentifier.ID(backing: SwiftData.PersistentIdentifier.PersistentIdentifierBacki
0
0
90
5d
Did Apple remove ability to manage App Store gifts in new OS versions?
Apple did not allow this post on regular forums due to iOS 26 usage, sent me there to post Previously, you were able to manage gifts that you send to other people (i.e. gift cards) via App Store app - there was a Gifts button in the App Store, where you could resend the gift if it did not arrive. Now, on iOS 26, this button is not available anymore in the app. It's just not there. On my Macbook that currently runs Sequoia, this button is available in the App Store app, but clicking it returns Cannot connect to App Store. Did Apple remove that functionality? Because I can't even submit a ticket on Apple Support to file a claim about undelivered gift. Gift sending itself works as usual, I managed to send a new gift right after that.
0
0
184
5d
How to add blur around the Tab bar in iOS 26
I have a TabView and in one of the tabs I have a horizontal ScrollView that uses .scrollTargetBehavior(.paging) in each of those pages I have a List, but the bottom of the list around the Tab bar doesnt get blurred, if I remove the horizontal scrollview and just have a list it blurs fine. So I want to know how I can manually add the blur when using the horizontal scrollview
1
0
110
5d
Failed to sync capability identifiers, Apple 403 detected - Access forbidden
Hey can someone suggest how to fox this error? I checked with my Team Admin and all seems correct but still getting this error. Might be related: Error started popping up when we added IOS extension and App groups in our app ✖ Failed to sync capability identifiers Apple 403 detected - Access forbidden. This request is forbidden for security reasons - You are not allowed to perform this operation. Please check with one of your Team Admins, or, if you need further assistance, please contact Apple Developer Program Support. https://developer.apple.com/support
0
0
163
6d