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?
Search results for
İOS 26 beta battery %1
250,828 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
This started happening to me yesterday (Sep. 15th) before iOS 26 upgrade.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
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
Topic:
Community
SubTopic:
Apple Developers
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…
Topic:
Community
SubTopic:
Apple Developers
I often integrate pop-ups/drawers that cover 100% of the width and 100% of the height of the screen. Since iOS 26, the behavior on Safari has changed and it is no longer a true 100% height because of this floating bar. The overlays of these pop-ups/drawers no longer cover 100% of the height, which looks very ugly.
Topic:
Safari & Web
SubTopic:
General
Tags:
I have updated to MacOS Tahoe 26 and I have also installed the new version of Safari Technology Preview and everything works correctly. Surely the problem affected version 227 of Safari Technology Preview for the MacOS Sequoia version. Greetings
Topic:
Safari & Web
SubTopic:
General
Tags:
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
+1. Had to ship like this - so frustrating.
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
There is a way to tell different views that they should be part of the same liquid glass group. i don't remember how it's called exactly and if it will help but you could give it a shot. Apple talked about that API in one of the WWDC videos
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?
Im facing the same since 26 ios beta versions. The same behavior like hibye was mentioned here. It wasnt happened on ios18. i have opened a feedback FB19889436 few weeks ago, however the current explenation in this topic describe better the issue.
Topic:
Safari & Web
SubTopic:
General
Tags:
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!
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
App Store Connect
App Store
StoreKit
ASO is by far one of the most frustrating parts of being an indie iOS dev. Despite trying keywords, descriptions, screenshots, and icons, results are unpredictable and competing with big-budget apps feels impossible. Has anyone found a way to make it work?
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
App Store
App Review
App Store Connect
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
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