Search results for

İOS 26 beta battery %1

250,828 results found

Post

Replies

Boosts

Views

Activity

What is the expected behavior for a notification service extension if the user has not been prompted for requestAuthorization()
If an iOS application has a notification service extension which gets sent a push, but the user has not been prompted for notification authorization via requestAuthorization() then what is the expected behavior? Will the push get delivered to the NSE but the resulting notification not displayed? Or will the push not get delivered at all to the NSE?
3
0
101
2d
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
2d
iOS 26 BUG
I have an iPhone 14 Pro, after downloading and installing the new iOS 26, I can’t make any calls, it instantly says “Call Failed”, my cellular data is also not working, however I can still receive calls. This bug needs to be fixed ASAP…
1
0
308
2d
iOS 26 navigationTransition .zoom issue
When I dismiss a view presented with .navigationTransition(.zoom), the source view gets a weird background (black or white depending on the appearance) for a couple of seconds, and then it disappears. Here’s a simple code example. import SwiftUI struct NavigationTransition: View { @Namespace private var namespace @State private var isSecondViewPresented = false var body: some View { NavigationStack { ZStack { DetailView(namespace: namespace) .onTapGesture { isSecondViewPresented = true } } .fullScreenCover(isPresented: $isSecondViewPresented) { SecondView() .navigationTransition(.zoom(sourceID: world, in: namespace)) } } } } struct DetailView: View { var namespace: Namespace.ID var body: some View { ZStack { Color.blue Text(Hello World!) .foregroundStyle(.white) .matchedTransitionSource(id: world, in: namespace) } .ignoresSafeArea() } } struct SecondView: View { var body: some View { ZStack { Color.green Image(systemName: globe) .foregroundStyle(Color.red) } .ignoresSafeArea() } } #Preview { NavigationTransit
4
0
164
2d
Liquid Glass material behaviour question
I have two views I've applied Liquid Glass to in Swift UI. I've noticed that depending on the height of the view the material changes and I'm not sure why. See the attached screenshot. Both views add the liquidGlass style in the same way but behave very differently on the same background. Ideally I'd like them to look the same as the bottom one. Is that the same as the clear style?
3
0
269
2d
App's App Store ID availble before initial App release?
Hey guys, I'm currently building my first app, which is not released yet. Inside the app there is one button that should bring the user to the app's App Store page, if the user wants to rate the app. I have found a way to navigate the user to the App Store page, with the help of the SKStoreProductViewController - https://developer.apple.com/documentation/storekit/skstoreproductviewcontroller. Although I need the App Store ID of my app aka the SKStoreProductParameterITunesItemIdentifier. - https://developer.apple.com/documentation/storekit/skstoreproductparameteritunesitemidentifier My question is now: How can I get my App Store ID if my app is not released yet? When looking into App Store Connect - My App - General Information I see a point called Apple ID with an 10 digit code. The description when clicking on the question mark is: An automatically generated ID assigned to your app. This code looks like the App Store ID, but is it really it? Really appreciate any help!
1
0
1.6k
2d
Full Xcode on iPad Pro with M-series processors
The iPad Pro on iPadOS 26 now operates on the same class of silicon as Apple’s entry-level Macs. It ships with M-series processors, 8GB of unified memory, support for multiple resizable windows, a menu bar, and proper external display connections. The device already has the foundation required for professional software development. The only gap is the absence of Xcode. Making the full version of Xcode available on iPad Pro would not take away from the Mac. Large and resource-intensive projects will still require the power of MacBook Pro and Mac Studio. What it would do is allow smaller and mid-sized projects to be developed directly on iPad Pro, which the hardware is fully capable of handling. That dynamic is complementary, not cannibalizing. Developers would continue to buy Macs but would also buy iPad Pros for portability and flexibility. The revenue upside is clear. Lowering the entry barrier means more developers enrolling in the Apple Developer Program at $99 per year, creating predictable recur
2
0
105
2d
Issue when creating Bookmark with security scope on macOS 26 RC
With the RC version of macOS 26, an issue persists when you try to create a bookmark with security scope for the root folder /. This leads to an error The file couldn’t be opened.. However, you can create bookmark for /Applications, /System, /Users... This is quite annoying for one of my app because a user can create a cartography of his disk usage, and the access to the root folder / is the only way to do so! Is there a workaround? PS: reported the issue with ID FB20186406 let openPanel = NSOpenPanel() openPanel.canChooseDirectories = true openPanel.canChooseFiles = false openPanel.beginSheetModal(for: self.view.window!) { (result) in guard result == .OK, let folderURL = openPanel.url else { return } openPanel.close() do { let data = try folderURL.bookmarkData(options: .withSecurityScope, includingResourceValuesForKeys: nil, relativeTo: nil) print(Bookmark data was created for (folderURL.path)) } catch (let error) { print(Error creating bookmark for (folderURL.path), with error: (error.loca
2
0
81
2d