Search results for

İOS 26 beta battery %1

253,814 results found

Post

Replies

Boosts

Views

Activity

iOS 17 - battery drain
Since the latest update of iOS (17.4) I can tell that I can see battery drain on my iPhone 15 Pro! Especially at nights! I use Wi-Fi calling so when I get ready to sleep I turn airplane mode on and leave it on all night. The next morning I get up and my iPhone has already lost at least 10% battery (!!!) Today it had a loss of 25% (!!!). It went from 66% to 51% in 8 hours! In the battery usage there are social media apps mostly with the most of consumption. I also kill all the apps from the background every single night before I go to sleep. So what eats my battery so much at night? Any thoughts or tips please?
1
0
1.2k
Mar ’24
IOS Battery Detailed Fetch Data
Hello, I want to design a widget application for iOS that provides detailed battery information. I did a lot of research on how to capture battery data with SwiftUI, but I could not get the result I wanted. I was able to do this on macOS but not on the IOS side. I'm wondering how I can do this for the latest IOS version? I need battery health, battery cycle, detailed charging information.
0
0
360
Sep ’23
Downgrading from iOS 10 beta 1
Hello everyone, Here I wanted to know is there a way that can downgrade the iOS from iOS 10 Developer Beta back to iOS 9.3.2 without losing data. Somebody said I should go get a iPSW file to restore my device and restore from the previous backup, it that right. Thanks all.
2
0
440
Jun ’16
Reply to iOS 9 beta 5 heat up iPhone
iI've been impressed by battery life in previous betas, but so far Beta 5 on my 5S is suffering from the same issues as described - rapid battery loss and excessive heating just doing simple tasks.The battery % seems off too - it jumped from 17% to 1% in a minute, then lasted another 30 minutes at 1% streaming over 3G. im going to try turning off WiFi assist, then network settings and I'll report back.
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
IOS 9.1 Beta 1 can't download
I yesterday enrolled my device in the Device Beta programme and I Got A OTA update Saying IOS 9.1 public beta 1 But When reaching the half download it gives me a error message that Error Occurred in Updating OS I have tried it several times since yesterday I doesn't seem to update Please help!
2
0
522
Sep ’15
Issue with layoutMarginsGuide under iOS 26
Before I file a bug report I wanted to verify that I'm not missing something. If I setup a view controller in a navigation controller and I add a view with a constraint that lines it up with the view controller's view's layoutMarginsGuide (leadingAnchor or trailingAnchor), in several cases the view will not line up with buttons added in the navigation bar. Under iOS 18 everything lines up as expected. To demonstrate, create a new iOS project based on Swift/Storyboard. Setup the storyboard to show a UINavigationController with one UIViewController. Then in ViewController.swift (the one embedded in the navigation controller), use the following code: import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() view.backgroundColor = .yellow title = Layout Margins let leftCancel = UIBarButtonItem(systemItem: .cancel) navigationItem.leftBarButtonItem = leftCancel let rightCancel = UIBarButtonItem(systemItem: .cancel) navigationItem.righ
2
0
307
Jul ’25
Reply to Using Pencil with iOS 10 beta 1
Same issue with iOS 10 Beta 4. The pencil worked fine under Beta 1 through 3. I tried rebooting, re-pairing, restoring iOS 10 beta 4 from iTunes, a new tip on the pencil. The pencil pairs, the battery level is displayed in notifications, but no recognition on the iPad pro 12.9. The Notes.app is also very slow, and crashes within 1-2 minutes, even after reloading Beta 4 via iTunes restore. I'm going to stop by an apple store to see if my pencil works with another ipad pro.
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’16
Reply to `onTapGesture` not triggered on `Map` views
I'm also seeing this problem with Swift Charts. This is with the latest Xcode 26 Beta 6 and iOS 26 Beta 8. This issue doesn't affect devices running iOS 18 and 17 from my testing. As such I've made this modifier which may help someone, hopefully I can remove it in the release seed but who knows! extension View { func CustomTapGesture(tapCount:Int = 1, perform action: @escaping () -> Void ) -> some View { modifier(TapGestureModifier(tapCount: tapCount, action: action)) } } struct TapGestureModifier: ViewModifier { var tapCount:Int = 1 var action: (() -> Void) func body(content: Content) -> some View { if #available(iOS 26.0, *) { content.simultaneousGesture(TapGesture(count: tapCount).onEnded { action() }) } else { content.onTapGesture(count: tapCount) { action() } } } } Which can be used like this: Text(Hello World) .CustomTapGesture(tapCount:2) { UIImpactFeedbackGenerator().impactOccurred() } To be clear, this doesn'
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Aug ’25
Reply to CarPlay CPGridTemplate – buttons show in a row, and limited to 9 buttons
Hi, your first issue - grid items in a single row - should be resolved on the latest iOS 26 beta. Can you confirm if you are still seeing this on iOS 26 beta 6? For your second issue, the maximum number of items in a grid template is given by the constant CPGridTemplateMaximumItems, which is 8 as of iOS 26. If you need more icons, please file a feedback request with more details about your use case. Thanks!
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Aug ’25
List reordering animation broken in iOS 26
just opened a iOS18 project in latest Xcode 26 (beta 7) and the list reordering animation is broken and jerky. on iOS 18 a change to one of the list items would smoothly move it to its correct place but in iOS 26 the items jerk around, disappear then pop up in the correct order in the list. I am using this to filter and sort the events if searchQuery.isEmpty { return events.sort(on: selectedSortOption) } else { let filteredEvents = events.compactMap { event in // Check if the event title contains the search query (case-insensitive). let titleContainsQuery = event.title.range(of: searchQuery, options: .caseInsensitive) != nil return titleContainsQuery ? event : nil } return filteredEvents.sort(on: selectedSortOption) } } is there a better way for iOS 26?
Topic: UI Frameworks SubTopic: SwiftUI
0
0
184
Sep ’25
iOS 18 and iPhone 12 battery
Hi ! On my iPhone 12 Pro with iOS 18, I don't know why but I have problems : The battery go fast down I can't charge full, I can only charge 80% of the battery The % are not realistic and funny I show my battery level 30%, I want to change the song and what 18% ??? This night I downgrade to iOS 17.5.1 and the battery is fine again I can charge to 100%. A bug on iOS 18 ???
2
0
1.2k
Jul ’24