Search results for

Visual Studio Maui IOS

105,644 results found

Post

Replies

Boosts

Views

Activity

Iphone 17 in app use Frontcamera
Hi there - I have an Issue everytime an app uses the Frontcamera, it crushes. I tried all the basic steps to help such as newstart of the phone, newest updates of the apps, reset all settings etc. nothing helps. I am now in IOS 26.1. Any Ideas?
0
0
11
1w
iOS 26.1 beta2 bug
After applying the MDM camera restriction on iOS 26.1 beta 2, the camera availability status is reported incorrectly. After applying the MDM camera restriction [UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera] return YES
0
0
394
1w
[iOS 26] [PushToTalk] Not receiving microphone PCM sample when Transmission Starts from System UI.
Steps To reproduce: Login to application and App has joined the PTC channel. Push the application to background and Lock the device. From the System UI press the talk button which will start transmit. Audio Session has been activated and Audio unit has been initialised properly. On terminator side no media is being played out. Issue observed consistently on specific models which has configured audio codec with Stereo type. More details are added : FB20281626
0
0
92
1w
iPadOS 26 UISearchController bug causing presented view controller to be dismissed
Under iPadsOS 26.0 and 26.1, if a view controller is presented with a presentation style of fullScreen or pageSheet, and the view controller is setup with a UISearchController that has obscuresBackgroundDuringPresentation set to true, then when cancelling the search the view controller is being dismissed when it should not be. To replicate, create a new iOS project based on Swift/Storyboard using Xcode 26.0 or Xcode 26.1. Update ViewController.swift with the following code: import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() view.backgroundColor = .systemBackground title = Root navigationItem.rightBarButtonItems = [ UIBarButtonItem(title: Full, primaryAction: .init(handler: { _ in self.showModal(with: .fullScreen) })), UIBarButtonItem(title: Page, primaryAction: .init(handler: { _ in self.showModal(with: .pageSheet) })), UIBarButtonItem(title: Form, primaryAction: .init(handler: { _ in self.showModal(with: .formSheet) })), ] } private func showModal
1
0
91
1w
Reply to tvOS .background Colors
The adaptable gray colors are only supported on iOS, iPadOS, visionOS and Mac Catalyst. If you'd like us to consider adding the API functionality to tvOS, please file an enhancement request using Feedback Assistant. Once you file the request, please post the FB number here. If you're not familiar with how to file enhancement requests, take a look at Bug Reporting: How and Why?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
1w
Reply to Alternative to generate programmatically a local hotspot like in Android?
Is there a workaround, unofficial method, or private API to generate a local hotspot from an app on iOS, similar to what can be done on Android? No APIs exist that will allow an app to turn the iOS device into a hotspot. Are there any best practices for improving the local Wi-Fi connection experience between an accessory and an iPhone in the absence of hotspot controls? We have a range of APIs an app can use to have the iPhone connect to a specific hotspot. In a modern app, that flow starts by pairing with your Wi-Fi accessory using AccessorySetupKit, then using either NEHotspotManager or our Wi-Fi aware support to actually join that hotspot. Note that while the AccessorySetupKit documentation is primarily focused on Bluetooth, that's largely because the Bluetooth process is significantly more complicated than the Wi-Fi flow. Is there an alternative within the MFi program? Nothing* in the MFi program applies to your particular situation. We do license WAC (Wireless Accessory Configuration) t
1w
Reply to Push notification MacOS "discarded as device was offline"
While there is a somewhat known issue with apsd not being able to sustain a persistent connection to APNs under certain network conditions/configurations, there is also the requirement that the devices receiving the notifications needs a persistent, non-proxied connection to APNs. Outside of the no proxy requirement, the root cause is not known, and if you can file a new bug report on this, more data would be helpful. In the meantime, you can try a different network connection, turn off any VPNs on your device, and if you have an option to not be behind a proxy things might work better. But please file a Bug Report on this In your bug report we would need some diagnostics logs as well. Please go to https://developer.apple.com/bug-reporting/profiles-and-logs/ and follow the instructions for Notifications for iOS to install a logging profile on your device. Then reproduce the issue (both before and after killing apsd), and follow the instructions at the above link to create a sysdiagnose. Attach it alo
1w
tvOS .background Colors
So I normally use the below as quick reference guide: https://mar.codes/apple-colors however, what is the reason that iOS colors are not available on tvOS? Especially the system/grays that are available on iOS. What does everyone else use for alternatives to these to get close matches between their multi platform apps?
1
0
91
1w
Reply to Managed Apple ID - Testflight not useable
We have this issue too. How can our iOS engineering team do their jobs without access to testflight if we adopt managed apple ids? The only reference on the topic is here: https://support.apple.com/guide/apple-business-essentials/service-access-with-managed-apple-accounts-axm171b3ee95/web which cites privacy concerns as a nebulous non-reason. Our teams that own mobile software need to use testflight to test release-track builds.
Topic: Business & Education SubTopic: General Tags:
1w
Reply to iOS 26: FloatingBarContainerView overlapping the whole custom ViewController
Thank you very much for your answer!. Well, the custom view controller was using the standard storyboard with UIKit, and I was adding my custom CropView programmatically. Now debugging in detail between iOS 17.5, iOS 18, and iOS 26, it seems that in iOS 26, it always shows that FloatingBarContainerView (maybe it's something related to liquid glass by default), so by code I added: let cropViewAsView = cropView as! UIView cropViewAsView.translatesAutoresizingMaskIntoConstraints = false NSLayoutConstraint.activate([ cropViewAsView.leadingAnchor.constraint(equalTo: view.leadingAnchor), cropViewAsView.trailingAnchor.constraint(equalTo: view.trailingAnchor), cropViewAsView.topAnchor.constraint(equalTo: view.topAnchor), cropViewAsView.bottomAnchor.constraint(equalTo: view.bottomAnchor) ]) And this fixed my issue, as you commented, related to the storyboard. I forgot to add the constraints layouts, and it seems that my custom crop view was starting with frame CGRect zero by default
Topic: UI Frameworks SubTopic: UIKit Tags:
1w
Reply to Xcode26 build app with iOS26, UISplitViewController UI issue
This way of setting view controllers broke in iOS 26, causing the bug you reported: viewControllers = [firstVC, secondVC] instead, try this: if #available(iOS 26.0, *) { splitVC = UISplitViewController(style: .doubleColumn) splitVC.preferredSplitBehavior = .tile splitVC.setViewController(firstVC, for: .primary) splitVC.setViewController(secondVC, for: .secondary) } else { // your previous setup }
Topic: UI Frameworks SubTopic: UIKit Tags:
1w