Search results for

İOS 26 beta battery %1

250,760 results found

Post

Replies

Boosts

Views

Activity

Stay connected to Medical BLE device in background
I work for a large medical device company. We have a 1st party BLE enabled medical device that must be very battery efficient. To this end, if a connection is lost, the BLE radio is powered down after 60 seconds and will only turn back on when a physical button on the device is pressed. I've been tasked with connecting to the device, staying connected to the device, and being able to retrieve data from the device upon a timed action. For instance, this could include a data read and transmission while they sleep. The key part of this is staying reliably connected for extended periods of time. This is a BYOD setup, and we cannot control power profiles. I would very much appreciate any information, recommendations, and/or insights into solving this problem. Thanks!
1
0
29
1d
Reply to Disable iOS 26 UINavigationBar Auto Intvert Background and Title
You could try adjusting the edge effect using UIScrollEdgeEffect and specifying a different style. That said, starting in iOS 26, the recommendation is to reduce your use of custom backgrounds in navigation elements and controls. Any custom backgrounds and appearances you use in the navigation bar might overlay or interfere with Liquid Glass or other effects that the system provides, such as the scroll edge effect. To learn how to update your app to adopt Liquid Glass, see the following resources: Adopting Liquid Glass WWDC25 session 356: Get to know the new design system WWDC25 session 284: Build a UIKit app with the new design.
Topic: UI Frameworks SubTopic: UIKit
1d
Reply to Internet stops working after idle time when using VPN on iOS 26 beta
This is a customer setup, and we are unable to reproduce the issue locally in our lab. The customer is experiencing unusual behavior they report that VPN performance is fine when connecting to a nearby VPN server, but it slows down when connecting to a server in a distant location. We have asked them to check their network and infrastructure on their end, as we believe this may not be a VPN issue, they are looking into it. For the first issue where the VPN fails, our investigation suggests that the socket enters a bad state once the device is locked and extension goes to sleep. It is neither timing out nor sending data, which indicates the socket enters a bad state and the resource is not accessible. Note: Both issues are not reproducible on iOS 18.
1d
Nested NavigationSplitView has unexpected layout shift inside a TabView
I have initialized a new SwiftUI project for iOS. I wrapped the default NavigationSplitView from SwiftData inside a TabView and ran into the following issue: On an iPad (Air, 13 inch, iPadOs 26), the button to open/close the sidebar shifts downwards while opening or closing the sidebar. When the animation finishes, the button jumps back to the original position. Here's the code I used inside my ContentView: var body: some View { TabView { Tab(Kategorien, systemImage: circle.fill) { NavigationSplitView { List { ForEach(items) { item in NavigationLink { Text(Item at (item.timestamp, format: Date.FormatStyle(date: .numeric, time: .standard))) } label: { Text(item.timestamp, format: Date.FormatStyle(date: .numeric, time: .standard)) } } .onDelete(perform: deleteItems) } .toolbar { ToolbarItem(placement: .navigationBarTrailing) { EditButton() } ToolbarItem { Button(action: addItem) { Label(Add Item, systemImage: plus) } } } } detail: { Text(Select an item) } } Tab(Alle Bücher, systemImage: circle
Topic: UI Frameworks SubTopic: SwiftUI
0
0
27
1d
Reply to App signing fails after account upgrade
I am having the EXACT same issue. Before my upgrade yesterday I was able to deploy to my physical device but now I get the exact same error. I actually posted on the r/Xcode subreddit before I saw your post to see if anyone there can help. I've tried many of the same things but no avail. I even made a fresh app and it' continues to happen. My hunch is that Xcode is using the old certificate somehow and not grabbing the valid one. If you find a solution please let me know and I'll be sure to do the same
1d
# Critical Bug: Apple servers not generating com.apple.developer.storekit entitlement for App ID com.driftnotes.app
Problem Summary Apple's provisioning servers are not generating the com.apple.developer.storekit entitlement for App ID com.driftnotes.app (Team ID: 43Y6AG5NPY), making it impossible to build iOS apps for physical devices despite all configurations being correct. Environment macOS: 15.3.1 (24D70) Xcode: 16.1 (xcode-select version 2409) Flutter: 3.35.2 • channel stable Account: Individual Developer (Kazakhstan) Bundle ID: com.driftnotes.app Team ID: 43Y6AG5NPY Error Message Error (Xcode): Provisioning profile iOS Team Provisioning Profile: com.driftnotes.app doesn't include the com.apple.developer.storekit entitlement. /Users/vyacheslavkuzin/Desktop/FlutterProjects/DriftNotesDart/ios/Runner.xcodeproj Steps to Reproduce Configure App ID with In-App Purchase capability (✅ verified in Developer Portal) Add In-App Purchase capability in Xcode project (✅ done) Configure entitlements file with StoreKit keys (✅ done) Enable automatic signing in Xcode (✅ done) Run: flutter build ios
1
0
33
1d
Reply to iOS 26 BUG
hi guys Iphone 16 pro max IOS 26 Bugs: action button on top left dont have MUTE anymore . is that a bug ?. I cannot mute phone anymore as before by pressing 3 sec on action button . shortcuts and action doesnt give choice to have a MUTE / SILENT option as it used to be in IOS 18 from control center , the MOBILE data switch doent work . By pressing on it make is do nothing . I have to manually go to setting to activate MOBILE DATA ON . I have tried to go to restriction . It looks like it show as ACTIVE in setting : if I look at SEARCH and type: Imessage or message . message is nothing found again in setting , SEARCH doent find any words to get me to setting place as it worked on IOS 18. I have to browse manually something small lag when switching pages in MULTITASK on my IPad Pro A12Z. gaming under LOW POWER MODE make the graphics glitchy . fine when on normal power . was fine under IOS 18
1d
"NSColorPanel.shared.showsAlpha = false" is causing not satisfiable layout constraints (macOS 26)
When disabling the opacity slider of color panels, my app crashes with unsatisfiable layout constraints. Feel free reproduce with a minimal test project: A macOS app based on the Xcode 26.0 template with only one line added to the ViewController's viewDidLoad() function: NSColorPanel.shared.showsAlpha = false The issue doesn't occur if this property is set to true or not set at all. I just filed a corresponding bug report (FB20269686), although I don't expect any feedback from Apple ... as numerous issues I reported were never updated or commented at all (after migrating from RADARs).
Topic: UI Frameworks SubTopic: AppKit
1
0
46
1d
how to suppress sound of a live activity when app is foregrounded?
Regular apns will give you a willPresent callback and there you can decide to suppress showing the notification or suppress its sound etc. I know the iOS app will give you callbacks for when there's a contentUpdate, yet that doesn't give the option to change the sound. Is there a way to suppress sound of a received Live Activity when app is in foreground?
0
0
30
1d