Search results for

İOS 26 beta battery %1

250,895 results found

Post

Replies

Boosts

Views

Activity

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:
3w
iOS 13.6.1 battery drain
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
0
0
190
Sep ’20
watchOS 7 beta 4 battery life
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?
26
0
4.1k
Aug ’20
Reply to Debug Code in Betas
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:
Aug ’18