Search results for

İOS 26 beta battery %1

250,728 results found

Post

Replies

Boosts

Views

Activity

Reply to Wifi Aware iOS devices authentication fails after a period of time
If you can reproduce the problem with our sample code then the path forward here is clear: File a bug against Wi-Fi Aware explaining how to reproduce the issue with our sample. When you file a bug you’ll be asked to include a sysdiagnose log. Trigger that log immediately after seeing the problem. And our Bug Reporting > Profiles and Logs page has a Wi-Fi for iOS/iPadOS entry that explains how to enable additional Wi-Fi specific logging. Please post your bug number, just for the record. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
19h
Reply to Unabe to use writeHEIFRepresentation - failed to add image to the PhotoCompressionSession.
@DTS Engineer Thanks for the info on the logging. Here is the error: -[CIContext(ImageRepresentation) _CMPhotoRepresentationOfImage:depth:allowAlpha:containerFormat:colorSpace:options:error:] failed to add image to the PhotoCompressionSession. (kCMPhotoError_InvalidData) I also caught the error and printed it out in Xcode: Error Domain=CINonLocalizedDescriptionKey Code=3 (null) UserInfo={CINonLocalizedDescriptionKey=failed to write HEIC data to file., NSUnderlyingError=0x15b1295f0 {Error Domain=CINonLocalizedDescriptionKey Code=10 (null) UserInfo={CINonLocalizedDescriptionKey=failed to add image to the PhotoCompressionSession.}}} This code works on iOS 18. Also, as stated above, I'm able to write the JPG and PNG versions of this image. I was able to get a heif image created by using a CGImage and doing: CGImageDestinationCreateWithURL CGImageDestinationAddImage CGImageDestinationFinalize Hope this helps.
20h
Reply to iOS Build Memory Access Issues Causing Crashes
This has all the hallmarks a subtle memory management bug, possibly one that triggered by threading issues. These often result in weird behaviour like this. It looks like you’ve already tried ASan and TSan, which is a good. The other most popular tool for such issue is zombies. You should try that. See Standard Memory Debugging Tools for info and documentation references. One thing to note here is that ASan and TSan only work with code that you build. If the problem lies in a third-party library that you get as a binary rather than source code, these tools won’t help. And so… [quote='800689021, reidly, /thread/800689, /profile/reidly'] Removing all 3rd party libraries or frameworks … mostly worked in that the crashes went away [/quote] 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. Finally, please post some example crash reports. I don’t need dozens, but a few that illustrate the more common
20h
Reply to iOS26中ALAssetsLibrary 编译报错问题
Sadly, I can’t read Chinese, so I’m answering based on a machine translation. I tried this out here in my office and saw exactly the same problem: Using Xcode 26.0, I created a new project from the iOS > App template. In one of the Swift files, I added the line import AssetsLibrary. The compiler errors with Failed to build module 'AssetsLibrary'; this SDK is not supported by the compiler (the SDK is built with 'Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.17.14 clang-1700.3.17.1)', while this compiler is 'Apple Swift version 6.2 effective-5.10 (swiftlang-6.2.0.19.9 clang-1700.3.19.1)'). Please select a toolchain which matches the SDK. This is obviously a bug and I encourage you to file a report about it. Please post your bug number, just for the record. Having said that, Assets Library was deprecated in iOS 9 and Xcode 26’s minimum supported deployment target, per the table on this page, is iOS 15. There is literally no way to use Xcode 26 to
Topic: Media Technologies SubTopic: General Tags:
20h
I need help
I am trying to learn to write swift. I am very proficient MS VB, which I have been using for almost 20 years. The Book I am learning from is: SwiftUI for Masterminds. I have got to chapter 7 with no problem. The exercise I am having a problem with Listing 7-5. The error I am getting is: Thread 1: Fatal error: No Observable object of type ApplicationData found. A View.environmentObject(_:) for ApplicationData may be missing as an ancestor of this view. I have spent the last 2 days rechecking my code. The MacBook I am using was purchased in May this year, is 16 in, M4 Max chip, 128 G ram. Firstly I want to thank you for reading this post. Secondly is there a better book to learn SwiftUI. Regards Terry Harrison
Topic: UI Frameworks SubTopic: SwiftUI Tags:
1
0
76
20h
Reply to ISP DNS Resolution in Full-Tunnel VPN
[quote='800664021, mayank_nag, /thread/800664, /profile/mayank_nag'] our project requires DNS resolution for every domain from both the VPN-provided DNS servers and the ISP’s DNS servers [/quote] Why is that? For context, most folks who hit problems like this are trying to use a packet tunnel tunnel provider for something that’s not VPN, something we specifically we don’t support. TN3120 Expected use cases for Network Extension packet tunnel providers talks more about this. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
20h
Reply to Unabe to use writeHEIFRepresentation - failed to add image to the PhotoCompressionSession.
When you get this error, do you see anything relevant in the system log? Specifically, look for log messages with a subsystem of com.apple.coreimage and a category of api. See Your Friend the System Log for lots of hints and tips for wrangling the system log. In this case, however, the process is pretty simple: Launch Console. Make sure Action > Include {Info,Debug} Messages are checked. Select your iOS device on the left. Paste subsystem:com.apple.coreimage into the search box. And, after that, past category:api. Click “Start streaming”. And then reproduce the issue. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
20h
Reply to iOS 26: "TLS failed with error: -9808"
Is this server available on the public Internet? If so, can you share the host name? Oh, and just to be clear: [quote='858269022, mitsubish, /thread/800607?answerId=858269022#858269022, /profile/mitsubish'] The chain is leaf + intermediate only, while it's supposed to be leaf + intermediate + root. [/quote] That is, as I’ve come to expect from LLMs, nonsense. The TLS specs are very clear that the server is not required to include the root. Specifically, RFC 8446 says: Because certificate validation requires that trust anchors be distributed independently, a certificate that specifies a trust anchor MAY be omitted from the chain, provided that supported peers are known to possess any omitted certificates. Earlier TLS RFCs had similar wording. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
20h
Reply to How to configure macOS app permission MANUALLY (not GUI)
I’m not sure I understand the question here. You wrote: [quote='800774021, manfred_k, /thread/800774, /profile/manfred_k'] Security Settings -> Network [/quote] That’s not a thing. Are you referring to System Settings > Privacy & Security > Local Network? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
21h
Reply to App signing fails after account upgrade
There was a glitch in the provisioning profile matrix at the start of the week, and I think you might’ve managed to hit the relatively small window when it was causing problems. On this thread I have some info on how you can check that, and others have posted various ways to clear the cached info that’s causing the problem. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
21h
iOS 26 tabViewBottomAccessory doesn't work with tabViewSidebarBottomBar
The code is shown as follows. Once the tabViewBottomAccessory is enabled, the tabViewSidebarBottomBar disappears. TabView { Text(tab a) .tabItem { Image(systemName: a.square) Text(Tab A) } .ignoresSafeArea(edges: [.all]) Text(tab b) .tabItem { Image(systemName: b.square) Text(Tab B) } .ignoresSafeArea(edges: [.all]) } //.tabViewBottomAccessory { // Text(tabViewBottomAccessory) //} .tabBarMinimizeBehavior(.onScrollDown) .tabViewStyle(.sidebarAdaptable) .tabViewSidebarBottomBar { Text(tabViewSidebarBottomBar) }
0
0
35
21h
Reply to AVCaptureMetadataOutput .face detection not working on iOS 26 Beta with high sessionPreset
Hello Apple Team ! In iOS 26 stable version release yesterday , this bug still happen, in some iPhones with iOS 26 the following method is never invoked: func metadataOutput(_ captureOutput: AVCaptureMetadataOutput, didOutput metadataObjects: [AVMetadataObject], from connection: AVCaptureConnection) We reproduce this bug in iPhone 11 , iPhone 13 Pro Max and iPhone 16 Pro Max, all this iPhones with iOS 26. On iPhone 16 Pro this method works properly. Thanks in advance !!
21h