Search results for

İOS 26 beta battery %1

250,760 results found

Post

Replies

Boosts

Views

Activity

Xcode 26 on Tahoe crashing
I've instilled Tahoe and Xcode 26(17A324) and the combination is virtually unusable, particularly the latter I'm no longer able to build projects reliably. My workflow is completely disrupted by a spinning beach ball so just a warning that you might want to delay until taking the plunge as I should have done. Fortunately, I have a back sequoia machine I can use instead.
1
0
60
1d
AVCaptureMetadataOutput .face detection not working on iOS 26 Beta with high sessionPreset
In iOS 26 (Developer Beta), the AVCaptureMetadataOutputObjectsDelegate no longer receives callbacks when metadataOutput.metadataObjectTypes = [.face] is set. On earlier iOS versions the issue does not occur. Interestingly, face detection works if I set the sessionPreset to .medium, but not with .high — except on the iPhone 16 Pro Max, where it works regardless.
2
0
263
1d
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 !!
1d
Reply to iOS Review
Since the can of worms has been opened, I wanted to add a bit of a different perspective, having been using *OS 26 on a daily basis on all of my devices. Simply put, the design refresh is the absolutely most beautiful interface update I've seen. Not only that, but it's incredibly functional and smart -- it's the realization of the kinds of interfaces that have been science fiction until now. The fluidity is the really exciting (and useful) part that so many people seem to miss. The old way (and still the Android way) is very static. You can find out all about them from a screenshot. On the other hand, Liquid Glass isn't static. It's more of a gel at times; one that, like elegant, expensive crystal, captures, refracts and magnifies light. Controls even light with the energy from my fingertips when I press, slide and tap them. This fluidity plays out in making the interface much easier to use, and more efficient too. Instead of having, for example, the icons for several tabs displayed all the
Topic: Design SubTopic: General
1d
Xcode 26 RC unable to compile asset catalogs on CI
This started with Xcode 26 beta 7, however it has continued to occur with the release candidate. Whenever I try to compile our asset catalog + icon composer icon for our AppKit/SwiftUI-based macOS app, actool fails with the following exception: *** Terminating app due to uncaught exception 'IBPlatformToolFailureException', reason: 'The tool closed the connection (AssetCatalogAgent-AssetRuntime) Last command: _ON_QUEUE_sendMessage:toChannelReturningError:during: Backtrace of last command: 0 -[IBAbstractPlatformToolProxy _ON_QUEUE_sendMessage:toChannelReturningError:during:] (in IDEInterfaceBuilderKit) 1 __74-[IBAbstractPlatformToolProxy sendMessage:toChannelReturningError:during:]_block_invoke (in IDEInterfaceBuilderKit) 2 _dispatch_client_callout (in libdispatch.dylib) 3 _dispatch_lane_barrier_sync_invoke_and_complete (in libdispatch.dylib) 4 DVTDispatchSync (in DVTFoundation) 5 -[IBAbstractPlatformToolProxy sendMessage:toChannelReturningError:during:] (in IDEInterfaceBuilderKit) 6
3
0
158
1d
Reply to High shutter speed with low frame rate and auto exposure
Also found High frame-rate doesn't guarantee fast shutter speed. In my case: I have 60 fps with 1/30 shutter speed: This is actually completely normal and possible! Here's why: Frame Rate (60 fps): This means a new frame is captured every 1/60 second (≈16.67ms) Shutter Speed (1/30 second): This means each individual frame is exposed for 1/30 second (≈33.33ms) How this works: The camera sensor can be exposing one frame while simultaneously reading out the previous frame. This is called rolling shutter operation, which is standard in CMOS sensors.
Topic: Media Technologies SubTopic: Video Tags:
1d
Reply to Internal testing. Receipt not always contain last consumable purchase.
I messed the code in previous post: using Jose; using Newtonsoft.Json; using System.IdentityModel.Tokens.Jwt; using System.Net.Http.Headers; using System.Security.Cryptography; using System.Text; private static ECDsa LoadApplePrivateKey(string filePath) { var keyText = File.ReadAllText(filePath) .Replace(-----BEGIN PRIVATE KEY-----, ) .Replace(-----END PRIVATE KEY-----, ) .Replace(r, ) .Replace(n, ) .Trim(); var keyBytes = Convert.FromBase64String(keyText); var ecdsa = ECDsa.Create(); ecdsa.ImportPkcs8PrivateKey(keyBytes, out _); return ecdsa; } private string GenerateApiToken() { var payload = new Dictionary { { iss, _issuerId }, { iat, DateTimeOffset.UtcNow.ToUnixTimeSeconds() }, { exp, DateTimeOffset.UtcNow.AddMinutes(5).ToUnixTimeSeconds() }, { aud, appstoreconnect-v1 }, { bid, _bundleId } }; var extraHeaders = new Dictionary { { alg, ES256 }, { kid, _keyId }, { typ, JWT } }; string token = JWT.Encode(payload, _privateKey, JwsAlgorithm.ES256, extraHeaders); _logger.LogInformation(Generated JWT: {Token}, t
1d
Internal testing. Receipt not always contain last consumable purchase.
After game restart first purchase is contained in receipt but the next ones is the same as first one so new purchases is not added. I afraid players can be charged for purchase but on my server I will not receive new purchases instead receipt with old one so they can do not receive in game currency. Will in production I receive a receipts with new consumable every time player purchase it? I use Unity3d In-app purchasing 5.0.1.
4
0
179
1d
Reply to Internal testing. Receipt not always contain last consumable purchase.
using Jose; using Newtonsoft.Json; using System.IdentityModel.Tokens.Jwt; using System.Net.Http.Headers; using System.Security.Cryptography; using System.Text; This Generation of Api token works on .net 9 I post the main methods I struggle with: { var keyText = File.ReadAllText(filePath) .Replace(-----BEGIN PRIVATE KEY-----, ) .Replace(-----END PRIVATE KEY-----, ) .Replace(r, ) .Replace(n, ) .Trim(); var keyBytes = Convert.FromBase64String(keyText); var ecdsa = ECDsa.Create(); ecdsa.ImportPkcs8PrivateKey(keyBytes, out _); return ecdsa; } private string GenerateApiToken() { var payload = new Dictionary { { iss, _issuerId }, { iat, DateTimeOffset.UtcNow.ToUnixTimeSeconds() }, { exp, DateTimeOffset.UtcNow.AddMinutes(5).ToUnixTimeSeconds() }, { aud, appstoreconnect-v1 }, { bid, _bundleId } }; var extraHeaders = new Dictionary { { alg, ES256 }, { kid, _keyId }, { typ, JWT } }; string token = JWT.Encode(payload, _privateKey, JwsAlgorithm.ES256, extraHeaders); _logger.LogInformation(Generated JWT: {Token}, token); r
1d