Battery drain on my iPhone 6s plus using ios 10
Search results for
İOS 26 beta battery %1
253,812 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
This was fixed for me with iOS 26 beta 2.
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
Fixed in iOS 26 beta 7.
Topic:
App & System Services
SubTopic:
General
Tags:
Beta 4 is eating through my battery on my Apple Watch Series 5 Nike Addition. I can not have the always on turned on otherwise the battery drains with in hours. With always on turned off I have about 30% battery life left around 8pm when before beta 4 it would be more around 50%. Anyone else experiencing the same thing with their Apple Watch and watchOS 7 beta 4?
I am using iPhone XS ,after I update my iOS (13.6.1 )currently used my iPhone’s battery drain fast just 10 to 15 min of use battery 7% to 20% down ,also battery health down within 3 days 100% to 95%.Please guide me how to resolve it. I shall be very thankful to you. regards Awais shahid
You'd think that after all these years, betas and batteries would be such a dead and buried horse that no one could find another angle on the topic...Battery life as a beta topic has always been rooted in priorities....Apple disables power management during betas at certain times so they can short list/focus other functions, then restores it later. That why betas don't compare to trimmed out Release versions. No mystery backgrounding that kneecaps the battery.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
i am trying to install IOS 10 public beta 1. But when upadates come close to finish it say Software Update Failed an error occurred downloading iOS 10 public beta 1.Can anyone help me to download iOS 10 public beta 1
Hi, I am running iOS Simulator on iOS 26 and I am trying to change unselectedItemTintColor of UITabBarItem in my TabBarViewController but it did not work when I tried following ways: Setting an iconColor through UITabBarAppearance() class Setting unselected item tint color like tabBar.unselectedItemTintColor = .black As an example attached file, I would like to set Settings tab's item color (icon + title) with different one when it is unselected.
Hi everyone, I've noticed a significant change in the visual behavior of List section headers between iOS 18 and iOS 26 beta that I'd like to clarify. Current Behavior: iOS 18 and earlier: Section headers with .listStyle(.plain) display with a translucent material background (regular material with blur effect) when pinned to the top during scrolling iOS 26 beta: Section headers with .listStyle(.plain) appear with a transparent/clear background even when pinned to the top Sample Code: struct ContentView: View { var body: some View { NavigationStack { List(1 ..< 5) { headerIndex in Section { ForEach(1...5, id: .self) { rowIndex in HStack { Text(Row (rowIndex)) .frame(height: 40) .padding(.horizontal) .background(Color.blue) Spacer() Image(systemName: chevron.right) .foregroundStyle(.secondary) .font(.title3) } } } header: { Text(Header (headerIndex)) .frame(height: 44) } .listRowSeparator(.hidden) } .listStyle(.plain) .
iOS 26 beta 7
Topic:
App & System Services
SubTopic:
Core OS
Tags:
WKWebView has set the option to disable selection (document. documentElement. style. webkitUserSelect='none ';) and long press (document. documentElement. style. webkitTouchCallout='none';). If there is text on one of the images in WebView, simply tap the image twice and then long press the text. The program will crash with the following error message: 0 CoreFoundation 0x185e058c8 __exceptionPreprocess + 164 1 libobjc.A.dylib 0x182d797c4 objc_exception_throw + 88 2 CoreFoundation 0x185e908d4 -[NSException initWithCoder:] + 0 3 QuartzCore 0x18678a874 CA::Layer::set_position(CA::Vec2<double> const&, bool) + 160 4 QuartzCore 0x1869a7270 -[CALayer setPosition:] + 52 5 UIKitCore 0x18c4ac564 -[UIView _backing_setPosition:] + 176 6 UIKitCore 0x18cefdf0c -[UIView setCenter:] + 220 7 UIKitCore 0x18cd9f794 -[_UIEditMenuContentPresentation _displayPreparedMenu:titleView:reason:didDismissMenu:configuration:] + 936 8 UIKitCore 0x18cd9f3c0 __54-[_UIEditMenuContentPresentation _displayMenu:reason
Hi. We are writing to report a critical issue we've encountered following the recent release of iOS 26 beta 6. After updating our test devices, we discovered that our application is no longer able to establish HTTPS connections to several of our managed FQDNs. This issue was not present in beta 5 and appears to be a direct result of changes introduced in beta 6. The specific FQDNs that are currently unreachable are: d.socdm.com i.socdm.com tg.scodm.com We have reviewed the official iOS & iPadOS 26 Beta 6 Release Notes, particularly the updates related to TLS. While the notes mention changes, we have confirmed that our servers for all affected FQDNs support TLS 1.2, so we believe they should still be compliant. We have also investigated several of Apple's support documents regarding TLS connection requirements (e.g., HT214774, HT214041), but the information does not seem to apply to our situation, and we are currently unable to identif
Since upgrading my iPhone 13 Pro Max to iOS 26, apps have become nearly impossible to debug. The recent update to iOS 26.1 has made this even worse. Going from app start to a fully rendered & responding screen takes <1 second on a Debug build when no debugger is attached, but with the debugger attached I get these times (measured manually with a stopwatch): First render: <1 second without debugger 5 seconds on USB debugger 30 seconds on wireless debugger Data loaded from webserver and UI responding: <1 second without debugger 19 seconds on USB debugger 5 minutes on wireless debugger! Doing an online speed test reports 55 Mbps for the phone and 60 Mbps on the MacBook, so I doubt it's my WiFi. Having a debugger attached used to make minimal difference on iOS 18, but the performance has tanked completely since the last major release. What happened?
In beta 2 using layer.cornerRadius on a UIEffectView with the UIGlassEffect allowed you to change the corner radius of the view. In beta 3, this no longer works. WWDC videos indicate the right way to do this is to set the cornerConfiguration on the UIEffectView, but that API doesn't seem to be available yet. At this time it doesn't seem like theres a way to have a glass view that isn't pill shaped.
In the Console, when presenting my view in a horizontally compact environment, I see: UINavigationController for collapsing UISplitViewController about to push view controller This message repeats infinitely, until the Xcode debugger eventually says: QUARANTINED DUE TO HIGH LOGGING VOLUME Of note is that this only occurs in the beta, does not occur when using the iOS 18.x SDK, and only occurs in a compact environment. EDIT: This occurs only when setting the secondary column of a doubleColumn UISplitViewController: splitVC.setViewController(secondary, for: .secondary) EDIT 2 and WORKAROUND: If this action is deferred until after viewDidAppear, it self-resolves: public override func viewDidAppear(_ animated: Bool) { super.viewDidAppear(animated) if let deferredSecondaryViewController { splitVC.showDetailViewController(deferredSecondaryViewController, sender: nil) } }
Topic:
UI Frameworks
SubTopic:
UIKit