Search results for

İOS 26 beta battery %1

250,728 results found

Post

Replies

Boosts

Views

Activity

Reply to Failed to find a DDI
Hello @haptic! As @Daniel1codes mentioned in his reply to your last message, the best and easiest solution, is to carry out a full delete of Xcode, followed by a re-install from the App Store. I ran into this issue when I updated to Xcode 26, so I carried out a full delete of Xcode and reinstalled from App Store. This fixed the DDI issue. Terminal commands used to fully delete Xcode: sudo rm -rf /Applications/Xcode.app rm -rf ~/Library/Developer/Xcode rm -rf ~/Library/Caches/com.apple.dt.Xcode rm -rf ~/Library/Developer/CoreSimulator rm -rf ~/Library/MobileDevice sudo rm -rf /Library/Developer/CommandLineTools sudo rm -rf /Library/Developer sudo rm -rf /System/Volumes/Data/Library/Developer rm -rf ~/Library/Preferences/com.apple.dt.Xcode.plist rm -rf ~/Library/Application Support/Xcode NOTE: If you are getting 'Operation Not Permitted' when running sudo rm -rf /Library/Developer or sudo rm -rf /System/Volumes/Data/Library/Developer manually delete them in Finder.
8h
Reply to Can I Exporting a Developer ID PacketTunnelProvider Plugin?
[quote='858495022, lucky06, /thread/799833?answerId=858495022#858495022, /profile/lucky06'] It seems that I should use OSSystemExtensionManager to start a System Extension … ? [/quote] Yes. Technically, this activates the system extension, which may or may not start it depending on the type of sysex. And, to be clear, you need this when you use system extension packaging, regardless of how you sign your extension. You can sign a sysex using: Apple Developerment, for day-to-day development Apple Developerment, for submission to the Mac App Store Developer ID Application, for direct distribution In all cases you need to use OSSystemExtensionManager. That’s correlated with the packaging, not with any specific signing identity. [quote='858495022, lucky06, /thread/799833?answerId=858495022#858495022, /profile/lucky06'] Could you share any other reference examples for OSSystemExtensionManager? [/quote] Sure. The Filtering Network Traffic sample code shows how to use OSSystemExtensionManager to activate an NE sysex.
9h
UIDocumentPickerViewController -initForOpeningContentTypes: gives URL to app without permission to read it in Release mode only
I'm using UIDocumentPickerViewController to open a url. Works fine in debug mode but version on the App Store is failing. Code to create the document picker is like: NSArray *theTypes = [UTType typesWithTag:@docxtensionhere tagClass:UTTagClassFilenameExtension conformingToType:nil]; UIDocumentPickerViewController *documentPicker = [[UIDocumentPickerViewController alloc]initForOpeningContentTypes:theTypes]; documentPicker.delegate = self; [self presentViewController:documentPicker animated:YES completion:nil]; So in debug mode this is all gravy. -documentPicker:didPickDocumentsAtURLs: passes back a URL and I can read the file. In release mode I get a URL but my app is denied access to read the file. After inspecting some logging it appears the sandbox is not granting my app permission. error Domain=NSCocoaErrorDomain Code=257 The file “Filename.fileextensionhere” couldn’t be opened because you don’t have permission to view it. UserInfo={NSFilePath=/private/var/mobile/Library/Mobile Documents/comappleCloudDocs/
8
0
2k
9h
Reply to RecognizeDocumentsRequest for receipts
Hi, It seems like it expected behavior. From the demo I can assume that it's not for those type of document. Imagine that you have a normal document, where you have a 2 columns of text. You wouldn't want to read it line by line like you want to do with receipts Unfortunately I try to do the same thing, so I have to stay with simple previous iOS OCR solution and trying to connect those in lines by my own (not very good) algorithm.
Topic: Machine Learning & AI SubTopic: General Tags:
9h
Reply to iOS Build Memory Access Issues Causing Crashes
Thank you for your response! Attached are some crash reports that represent attempts to merge in two separate branches that take our relatively stable (not crashing in the ways described above) main branch and introduce (or reintroduce) the observed crashes. Also, ASan is enabled for two out of four of the reports (one per branch) and disabled for the others. Did you try doing this incrementally? If you have a bunch of them, it’d be interesting to see which combinations do and don’t reproduce the problem. I will try this, but one of the primary issues with tracking these crashes down has been not knowing if/when they are truly eliminated as they tend to come and go after minimal code changes. It seems that almost any change to the code, or which files/libraries/frameworks are included in the build will change how the crashes manifest, or in some cases do not manifest. This is a bit of a long shot, but are there any things in particular (in crash reports or otherwise) we can look for in the f
9h
Internet stops working after idle time when using VPN on iOS 26 beta
We have observed an internet access issue after the device enters idle mode on iOS 26 beta 9. Although the Ivanti Secure Access Client appears connected, users are unable to access any resources (internet or intranet) after unlocking the device from idle. When we check the log socket connection looks not disrupted, packets are tunnelled but no resource access. Split tunnel enabled and proxy PAC configured. This was observed on both iOS and iPadOS 26 beta. Steps to reproduce: Connecting to the internet, launching the Ivanti client, locking the device, and then unlocking it after a brief period of idle. The issue occurs when the VPN remains connected but no resources are accessible.
7
0
328
10h
403 Forbidden error
Hello Apple Developer Support, I am facing an issue when attempting to use the App Store Connect API with my API key. While basic access (e.g., /v1/apps) works correctly, any requests related to Certificates, Identifiers & Profiles (CIP) are failing with a 403 Forbidden error. Here are the details of the request and validation results: JWT Details: { header: { alg: ES256, kid: 2XLW343BLM, typ: JWT }, payload: { iss: 9cf6159c-e038-4703-b542-7652242a6dbf, iat: 1757515277, exp: 1757516357, aud: appstoreconnect-v1 } } Test Results: ✅ /v1/apps?limit=1 → Status: 200 (working) ❌ /v1/bundleIds?limit=1 → Status: 403 Error: Unable to find a team with the given Content Provider ID 9cf6159c-e038-4703-b542-7652242a6dbf to which you belong. ❌ /v1/certificates?limit=1 → Status: 403 Error: This request is forbidden for security reasons. ❌ /v1/profiles?limit=1 → Status: 403 Error: Unable to find a team with the given Content Provider ID. I have already confirmed that: All API keys were
8
0
503
9h
Building macOS apps with Xcode 26 on macOS 26 VM
I'm trying to setup a macOS 26 build environment in a VM (using UTM and the virtualization framework Apple provides). I have Xcode 26 installed and have logged into my Apple ID and verified that the team and other configuration looks fine in Xcode settings. When trying to build the macOS app, I see errors saying the VM's device ID has not been registered. I have confirmed that the device ID is registered both in the Provisioning portal AND the downloaded .provisionprofiles (in Library > Developer > Xcode > UserData). This problem appears on multiple targets (e.g. the main app and extensions). If I try to manually provision the app, using the Provisioning portal, I can build the product, but it will not launch because of Gatekeeper issues. Finally, signing to run locally doesn't work either. As the app launches, frameworks refuse to load because Team IDs don't match. With ad hoc provisioning, there are no Team IDs. I've come to the conclusion that this just isn't possible. Which is a
24
0
2.2k
12h
CallKit Call Blocking Not Working
I have also tested this on iOS 26 (Beta 9 and above), and the CallKit call blocking functionality is not working. Numbers that should be blocked still ring through. Caller Identification continues to function as expected, but blocking entries (addBlockingEntry) are ignored.
5
0
133
10h
`onTapGesture` not triggered on `Map` views
When building with iOS 26 SDK beta 5 (23A5308f), onTapGesture is no longer being triggered on Map views. This appears to be a regression in beta 5 specifically, as this issue was not present in beta 4. How to reproduce Code The following code demonstrates the issue, as seen in the videos below. import MapKit import SwiftUI struct ContentView: View { @State private var location = CGPoint.zero var body: some View { Map() .onTapGesture { location in self.location = location } .safeAreaInset(edge: .bottom) { VStack(alignment: .center) { Text(iOS (UIDevice.current.systemVersion)) .font(.largeTitle) Text(Tapped Location) Text((location.x), (location.y)) } .frame(maxWidth: .infinity, alignment: .center) .background(.background) } } } Demo The gifs below show the behavior in iOS 18.5 (in which the tap gestures are recognized and tapped coordinate is displayed in the safe area inset) and iOS 26 beta 5 (in which the tap gestures h
18
0
429
12h
Reply to `onTapGesture` not triggered on `Map` views
For those having to deal with that bug and in need to get location for the tap, I've used the answer here https://stackoverflow.com/questions/56513942/how-to-detect-a-tap-gesture-location-in-swiftui with a slight modification : import SwiftUI struct ClickGesture: Gesture { let count: Int let coordinateSpace: CoordinateSpace typealias Value = SimultaneousGesture.Value init(count: Int = 1, coordinateSpace: CoordinateSpace = .local) { precondition(count > 0, Count must be greater than or equal to 1.) self.count = count self.coordinateSpace = coordinateSpace } var body: SimultaneousGesture { SimultaneousGesture( TapGesture(count: count), DragGesture(minimumDistance: 0, coordinateSpace: coordinateSpace) ) } func onEnded(perform action: @escaping (CGPoint) -> Void) -> _EndedGesture { self.onEnded { (value: Value) -> Void in guard value.first != nil else { return } guard let location = value.second?.startLocation else { return } guard let endLocation = value.second?.location else { retu
Topic: UI Frameworks SubTopic: SwiftUI Tags:
12h
Mutating an array of model objects that is a child of a model object
Hi all, In my SwiftUI / SwiftData / Cloudkit app which is a series of lists, I have a model object called Project which contains an array of model objects called subprojects: final class Project1 { var name: String = @Relationship(deleteRule: .cascade, inverse: Subproject.project) var subprojects : [Subproject]? init(name: String) { self.name = name self.subprojects = [] } } The user will select a project from a list, which will generate a list of subprojects in another list, and if they select a subproject, it will generate a list categories and if the user selects a category it will generate another list of child objects owned by category and on and on. This is the pattern in my app, I'm constantly passing arrays of model objects that are the children of other model objects throughout the program, and I need the user to be able to add and remove things from them. My initial approach was to pass these arrays as bindings so that I'd be able to mutate them. This worked for the most part but there were two pro
3
0
105
13h