Hi developers, The iOS 18 has been unsigned since 09/23, which is much earlier than Apple usually does. In addition, the new features in IOS26 are tough to get used to; therefore, the sign for IOS18.7 is urgently needed by a large number of Apple users! Please see discussions on every social media across various languages.
Search results for
Visual Studio Maui IOS
105,642 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Issue Description: We are experiencing MDM profile installation failures specifically on iPhone 17 devices. After extensive testing and comparison between affected and working devices, we suspect this appears to be a parameter transmission error rather than device settings. Technical Analysis: Device Settings Comparison: No differences found between problematic and working devices in system settings, indicating this is not a configuration issue. Suspected Parameter Transmission Error: • Device model information appears to be restricted or blocked during profile download • User ID and phone number parameters are not being transmitted to the server • Installation logs show missing login ID and phone number entries Symptoms: • During MDM profile installation, the Apps & Restrictions section that should appear is missing • Profile download parameters are suspected to not be properly transmitted to the server • Installation process fails at the profile configuration stage Critical Finding: When we cloned a pre
Topic:
Business & Education
SubTopic:
Device Management
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) { let deviceType = UIDevice.current.userInterfaceIdiom == .pad ? iPad : iPhone let tokenString = deviceToken.map { String(format: %02.2hhx, $0) }.joined() print(🎉 didRegisterForRemoteNotificationsWithDeviceToken CALLED on (deviceType)!) print(✅ APNs device token registered on (deviceType): (tokenString)) Messaging.messaging().apnsToken = deviceToken // Give Firebase a moment to process the APNs token DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { [weak self] in self?.fetchFCMToken(reason: apnsRegistered) } } This method is not being called. Tested device: Ipad Air - iOS 26.0(Simulator) also in real iPad. xcode 26.0.1
Topic:
App & System Services
SubTopic:
Notifications
Tags:
We have a Low-Latency HLS stream, and on iOS 26, even though the bandwidth is sufficient, it still selects a low-bandwidth resolution (e.g., RESOLUTION=640x360) for playback instead of using a higher-bandwidth resolution (e.g., RESOLUTION=1920x1080) when using AVPlayerViewController with AVPlayer. This works fine on iOS version 18 and previous versions. What could be the solution to this issue?
Topic:
Media Technologies
SubTopic:
Streaming
Please file a bug report about this issue with 26.1 right away. We would also need diagnostic logs, It would be very helpful if you could please go to https://developer.apple.com/bug-reporting/profiles-and-logs/ and follow the instructions for Location Services for iOS to install a logging profile on your devices. Then reproduce the issue, and follow the instructions at the above link to create a sysdiagnose for both devices. And attach that to the Feedback report as well. To file a Feedback Report, you can use the Feedback Assistant. Once you have done so, please share the Feedback ID on this thread so I can make sure the team is aware of it. Once the Location team is on the case, they may contact you for further information or specific test cases.
Topic:
App & System Services
SubTopic:
Maps & Location
Tags:
I have been using the Mixpanel-Swift SDK alongside the Salesforce Mobile SDK in my iOS project with Xcode 16.4 without any issues. However, after upgrading to Xcode 26, I started encountering a problem related to SQLite3. Here is the relevant portion of my Podfile setup: platform :ios, '17.0' def required_pods source 'https://cdn.cocoapods.org/' source 'https://github.com/forcedotcom/SalesforceMobileSDK-iOS-Specs.git' use_frameworks! pod 'SalesforceAnalytics', '13.0.2' pod 'MobileSync', '13.0.2' pod 'SalesforceSDKCore', '13.0.2' pod 'SalesforceSDKCommon', '13.0.2' pod 'SmartStore', '13.0.2' pod 'Mixpanel-swift' end target 'Test' do required_pods end post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = config.build_settings['CODE_SIGNING_REQUIRED'] = NO config.build_settings['CODE_SIGNING_ALLOWED'] = NO config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '17.0
There is a known issue which is being fixed in iOS 26.1 If the issue you are seeing still persists in the latest 26.1 beta, please file a separate bug report explaining in detail the issue you are seeing and how exactly you are specifying the custom sound.
Topic:
App & System Services
SubTopic:
Notifications
Tags:
Summary While parallel testing Core Location on the new iOS 26.1 beta (23B5044i), I observed what I believe to be a regression of the issue described here: https://developer.apple.com/forums/thread/779192 Specifically, user positioning underground subway stations is noticeably inaccurate on the beta, whereas the same scenarios remain accurate on the unupgraded device below. I work with the MTA (New York City) and work with the OP of that thread. Happy to provide additional testing or details if helpful. Please let me know what else you need. Test Info Riding NYCT from Wall St to 34th St Penn Station on the 2 train carrying two iphones Recording: https://limewire.com/d/dpTWi#pDC3GRYIdE Expected: Consistent underground positioning comparable to prior releases. Actual: Degraded/inaccurate underground positioning on iOS 26.1 beta. Test Devices Left Screen: iPhone 15 Pro Max - iOS 26.1 beta (23B5044i) Right Screen: iPhone 11 - iOS 18.6.2 (22G100) Blue dots show location set by C
Topic:
App & System Services
SubTopic:
Maps & Location
Tags:
Beta
Core Location
Maps and Location
Testing
I'm working on a large multi-platform iOS project (iOS, iPadOS, watchOS, tvOS, visionOS) and have successfully migrated from legacy .strings files to modern String Catalogs (.xcstrings). However, I'm unable to export localizations using xcodebuild -exportLocalizations due to cross-platform framework dependency issues. (Note: I did have AI help me write this question, so apologies in advance for any errors) Project Structure Main iOS/iPad app with multiple extensions watchOS companion app tvOS app visionOS app 49 .xcstrings files successfully migrated across all targets Uses Swift Package Manager for modularization The Problem When attempting to export localizations using xcodebuild -exportLocalizations, the build fails because it tries to build all targets across all platforms, including watchOS targets that depend on third-party xcframeworks that don't include watchOS slices: xcodebuild -exportLocalizations -project MyProject.xcodeproj -scheme MyApp -localizationPath ./export -
I am trying to setup a system-wide DNS-over-TLS for iOS that can be turned off and on from within the app, and I'm struggling with the implementation details. I've searched online, searched forums here, used ChatGPT, and I'm getting conflicting information or code that is simply wrong. I can't find example code that is valid and gets me moving forward. I think I need to use NEDNSProxyProvider via the NetworkExtension. Does that sound correct? I have NetworkExtension -> DNS Proxy Capability set in both the main app and the DNSProxy extension. Also, I want to make sure this is even possible without an MDM. I see conflicting information, some saying this is opened up, but things like https://developer.apple.com/documentation/Technotes/tn3134-network-extension-provider-deployment saying a device needs to be managed. How do private DNS apps do this without MDM? From some responses in the forums it sounds like we need to parse the DNS requests that come in to the handleNewFlow function. Is there good sa
Started a new X-Code Project after updating to 26.0.1 and realized that I get an error when trying to mark a class as ObservableObject => Class XYZ does not conform to Protocol 'ObservableObject'. Strange behaviour, because at old projects the code is working even though the build options are the same and other settings like iOS version in Target are the same. There must be something chaged under the hood of XCode? I have to import Combine now, before I could write my class, e.g. CoreData Datamanager: ObservableObject only using CoreData.
I've seen this error message too when running a very simple SwiftUI app (built using Xcode 26.0 (17A324)) on my device (iPhone 16 running iOS 26.0 (23A341)): Start the app Wait 10 seconds Send the app to the background. No other user interaction is necessary. The LLDB statement you provided does catch the location of the error message. But the stack trace is not helpful, as non of my code is involved. But what I've seen is that the error message is written to the console when the app is sent for the first time to the background. It doesn't appear anymore afterwards. The call stack I've captured is: #0 0x00000001a74e1280 in os_log () #1 0x00000001914d4218 in ___lldb_unnamed_symbol7481 () #2 0x000000018b2855c0 in ___lldb_unnamed_symbol14749 () #3 0x00000001914dc944 in ___lldb_unnamed_symbol7669 () #4 0x00000001914dce24 in ___lldb_unnamed_symbol7677 () #5 0x00000001de688520 in partial apply forwarder for closure #1 (Swift.UnsafeMutablePointer>) -> τ_0_0 in Observation.generateAccessList<τ_0_0&g
Topic:
Accessibility & Inclusion
SubTopic:
General
Tags:
Hi, any updates on this issue? As I said originally, bug report is private so I cannot follow there. From what I observed on my game, it seems that framerate improves, going back to about 60FPS, only during dragging the the finger touching the screen. Then it goes back to 40 when I am not dragging. I made a screen recording of the Metal HUD if anyone wants to take a look: https://streamable.com/l647a7 Maybe touch is making iOS to add more CPU priority to the app? Not sure. If anybody has any ideas how we could trigger this programatically to walk around FPS drop that would be great. Cheers, Dawid
Topic:
Graphics & Games
SubTopic:
SpriteKit
Tags:
Zoom is crashing when clicking the chat button. I am using iOS 26.1. I have already powered down and reinstalled the app.
Topic:
Community
SubTopic:
Apple Developers
Hi @X_Sheep, The center property is the location of the section in the frame of reference the room scan is building as the whole building is scanned. Building a visualizer as outlined in the WWDC 22 talk would be a great way to see these elements and debug what is really happening with your app and the data. If that is not what you are seeing a feedback would be great that contains the details of your use case and specifics on what's not working. Thank you
Topic:
Spatial Computing
SubTopic:
General
Tags: