Search results for

“xcode simulator is not listed in visual studio.”

362,648 results found

Post

Replies

Boosts

Views

Activity

UISheetPresentationController Disable Liquid Glass For Foreground Elements Within a Sheet
Hello just wondering if there is a supported way to disable the liquid glass effect that is passed down to every subview within a sheet using the medium or smaller detents? There are certain views with information in them within this sheet that I do not want to become semi transparent but I want to keep the background view of the sheet using the default liquid glass effect.
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
148
6d
NSWorkspace - macOS Tahoe 26.4 -activateFileViewerSelectingURLs: Crashes When Called Off The Main Thread
So I just installed the 26.4 update and unfortunately I have to debug this newly introduced issue (that may work its way into a separate thread). In my debugging steps I'm testing something related to files and I used -activateFileViewerSelectingURLs: to show the file in Finder. Now I am off the main thread. I added this line for testing purposes and I get a crash: NSWindow should only be instantiated on the main thread!' terminating due to uncaught exception of type NSException. So apparently - NSWorkspace is calling through to NSServices APIs and for some reason the system wants to present an NSError, which is a subtopic and other bug on its own because the 'Show in Finder functionality actually WORKS but it crashed my app! #22in +[NSAlert alertWithError:] () #23in -[NSApplication(NSErrorPresentation) presentError:] () #24 +[NSServicesMenuHandler _performServiceFromEntry:withPasteboard:withRequestor:withInvocationSourceType:withCarbonFocus:withSendTypes:withReturnTypes:canReleasePasteboardImmediately:] () #
3
0
68
6d
Reply to iCloud Sync not working with iPhone, works fine for Mac.
Thank you for reporting the issue, which does seem like a regression in iOS 26.4. Given the extensive impact of the issue, I’d suggest that you file a feedback report, if not yet, to attract more attention from the relevant engineering team. Specific to the issue, you don't need to capture a sysdiagnose to file a feedback report, but please mention the user impact in your report, if you don't mind. Please share your feedback report ID here. Thanks again. Best, —— Ziqiao Chen  Worldwide Developer Relations.
6d
Reply to Zoom navigation transitions for tabViewBottomAccessory are not working in SwiftUI with ObservableObject or Observable
Thank you for the update Damian, however the report listed on this thread appears to be closed. Can you file a new report for this issue and share a minimal code a reproduces this issue? If it's the same code as above feel free to link to this thread. I would like to confirm if this is the same issue or not, and want to share these details with the relevant engineering team. File your report here https://developer.apple.com/feedback-assistant/ Once complete reply with the FB number.  Travis
Topic: UI Frameworks SubTopic: SwiftUI Tags:
6d
Zoom navigation transitions for tabViewBottomAccessory are not working in SwiftUI with ObservableObject or Observable
The zoom navigation transition with matchedTransitionSource in tabViewBottomAccessory does not work when a Published var in an ObservableObjector Observable gets changed. Here is an minimal reproducible example with ObservableObject: import SwiftUI import Combine private final class ViewModel: ObservableObject { @Published var isPresented = false } struct ContentView: View { @Namespace private var namespace @StateObject private var viewModel = ViewModel() // @State private var isPresented = false var body: some View { TabView { Button { viewModel.isPresented = true } label: { Text(Start) } .tabItem { Image(systemName: house) Text(Home) } Text(Search) .tabItem { Image(systemName: magnifyingglass) Text(Search) } Text(Profile) .tabItem { Image(systemName: person) Text(Profile) } } .sheet(isPresented: $viewModel.isPresented) { Text(Sheet) .presentationDragIndicator(.visible) .navigationTransition(.zoom(sourceID: tabViewBottomAccessoryTransition, in: namespace)) } .tabViewBottomAccessory { Button { viewMo
7
0
388
6d
Reply to Bottom toolbar Button truncated on Mac Catalyst 26
Hello cht1995, [quote='881559022, cht1995, /thread/804585?answerId=881559022#881559022, /profile/cht1995'] It's been more than 6 months and this problem still persists in Xcode 26.3. Bump for visibility.[/quote] Did you file a bug report about this issue in Feedback Assistant? If so, please post the FB number here so we can investigate further. Thanks in advance, Richard Yeh  Developer Technical Support
Topic: UI Frameworks SubTopic: SwiftUI Tags:
6d
Bottom toolbar Button truncated on Mac Catalyst 26
On Mac Catalyst 26, a Button bar item in a bottom toolbar look squished. This happens only when the Mac Catalyst Interface option is set to Optimize for Mac. When it is set to Scale to match iPad, the buttons look fine. For example, in the screenshots below, the text button should say Press Me, instead of … A simple reproducible snippet and a screenshot below. The toolbar button comparison between Scale to match iPad and Optimize for Mac are shown. Optimize for Mac Scale to match iPad import SwiftUI struct ContentView: View { @State private var selectedItem: String? = Item 1 let items = [Item 1, Item 2] var body: some View { NavigationSplitView { List(items, id: .self, selection: $selectedItem) { item in Text(item) } .navigationTitle(Items) } detail: { if let selectedItem = selectedItem { Text(Detail view for (selectedItem)) .toolbar { ToolbarItemGroup(placement: .bottomBar) { Text(Hello world) Spacer() Button(Press Me) { } Spacer() Button { } label: { Image(systemName: plus) .imageScale(.large) } }
3
0
439
6d
Reply to Text alignment issue in iOS 26.4
Hello RolfS, I haven't come across this issue before. This might have to do with the specifics of your implementation. Glad to hear that you have a usable workaround. Please file a bug report and include a focused sample project (feel free to reuse your code snippet) that replicates this issue. Once you open the bug report, please post the FB number here for my reference. If you have any questions about filing a bug report, take a look at Bug Reporting: How and Why? If you're not familiar with preparing a test project, take a look at Creating a test project. Thank you for reporting, Richard Yeh  Developer Technical Support
Topic: UI Frameworks SubTopic: UIKit
6d
Text alignment issue in iOS 26.4
There appears to be a serious issue in iOS 26.4 regarding text alignment. All text strings are rendered right-aligned instead of left-aligned, even when explicitly setting the paragraph style to NSTextAlignmentLeft. This behavior is unexpected and seems to indicate a regression in text rendering. Could you please confirm whether this is a known issue in iOS 26.4? I am using the following code in a central function that has been working reliably for years across all my apps. Best regards, Rolf Code: NSMutableParagraphStyle* paragraphLeft = [[NSMutableParagraphStyle alloc] init]; if (paragraphLeft != nil) { paragraphLeft.alignment = NSTextAlignmentLeft; NSDictionary *settings = @{ NSFontAttributeName : font, NSForegroundColorAttributeName : fontclr, NSParagraphStyleAttributeName : paragraphLeft }; [theString drawAtPoint:CGPointMake(x, y - font.ascender) withAttributes:settings]; [paragraphLeft release]; }
Topic: UI Frameworks SubTopic: UIKit
3
0
170
6d
Reply to How to hide route button `showsRouteButton = false` in `MPVolumeView` without deprecation warning?
Thanks so much for the post. My answer will not be to find ways to suppress of the deprecation warning. Spoiler alert. This warning indicates that the API including your method will cease to function, and the documentation advises utilizing the AVRoutePickerView as an alternative. Consequently, I would recommend transitioning entirely to the AVRoutePickerView. As that class you are using including the method showsRouteButton will stop working in the future releases. Please let me know if I can help you moving to the AVRoutePickerView as the documentation shows. Albert Pascual
  Worldwide Developer Relations.
Topic: Media Technologies SubTopic: Audio Tags:
6d
DNS Issues?
I click in App Store Connect to view my app but there is a dns error. Tried Brave and Safari but have the same result. I just did update my Mac to Tahoe 26.4 . This site can’t be reached olympus-int.itunes.apple.com’s DNS address could not be found. Diagnosing the problem. DNS_PROBE_POSSIBLE
1
0
103
6d
Reply to Xcode Source Control pull/push hangs indefinitely, terminal Git works normally After Tahoe 26.3 (25D125) Update
We just updated to Tahoe and having same issue; works with CLI and hangs with Xcode 26.3 and 26.4. Note via the CLI we see: ** WARNING: connection is not using a post-quantum key exchange algorithm. ** This session may be vulnerable to store now, decrypt later attacks. ** The server may need to be upgraded. See https://openssh.com/pq.html So perhaps Xcode also sees this warning and is having issues parsing it?
6d
UISheetPresentationController Disable Liquid Glass For Foreground Elements Within a Sheet
Hello just wondering if there is a supported way to disable the liquid glass effect that is passed down to every subview within a sheet using the medium or smaller detents? There are certain views with information in them within this sheet that I do not want to become semi transparent but I want to keep the background view of the sheet using the default liquid glass effect.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
148
Activity
6d
NSWorkspace - macOS Tahoe 26.4 -activateFileViewerSelectingURLs: Crashes When Called Off The Main Thread
So I just installed the 26.4 update and unfortunately I have to debug this newly introduced issue (that may work its way into a separate thread). In my debugging steps I'm testing something related to files and I used -activateFileViewerSelectingURLs: to show the file in Finder. Now I am off the main thread. I added this line for testing purposes and I get a crash: NSWindow should only be instantiated on the main thread!' terminating due to uncaught exception of type NSException. So apparently - NSWorkspace is calling through to NSServices APIs and for some reason the system wants to present an NSError, which is a subtopic and other bug on its own because the 'Show in Finder functionality actually WORKS but it crashed my app! #22in +[NSAlert alertWithError:] () #23in -[NSApplication(NSErrorPresentation) presentError:] () #24 +[NSServicesMenuHandler _performServiceFromEntry:withPasteboard:withRequestor:withInvocationSourceType:withCarbonFocus:withSendTypes:withReturnTypes:canReleasePasteboardImmediately:] () #
Replies
3
Boosts
0
Views
68
Activity
6d
Reply to iCloud Sync not working with iPhone, works fine for Mac.
Thank you for reporting the issue, which does seem like a regression in iOS 26.4. Given the extensive impact of the issue, I’d suggest that you file a feedback report, if not yet, to attract more attention from the relevant engineering team. Specific to the issue, you don't need to capture a sysdiagnose to file a feedback report, but please mention the user impact in your report, if you don't mind. Please share your feedback report ID here. Thanks again. Best, —— Ziqiao Chen  Worldwide Developer Relations.
Replies
Boosts
Views
Activity
6d
Reply to Zoom navigation transitions for tabViewBottomAccessory are not working in SwiftUI with ObservableObject or Observable
Thank you for the update Damian, however the report listed on this thread appears to be closed. Can you file a new report for this issue and share a minimal code a reproduces this issue? If it's the same code as above feel free to link to this thread. I would like to confirm if this is the same issue or not, and want to share these details with the relevant engineering team. File your report here https://developer.apple.com/feedback-assistant/ Once complete reply with the FB number.  Travis
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
6d
Zoom navigation transitions for tabViewBottomAccessory are not working in SwiftUI with ObservableObject or Observable
The zoom navigation transition with matchedTransitionSource in tabViewBottomAccessory does not work when a Published var in an ObservableObjector Observable gets changed. Here is an minimal reproducible example with ObservableObject: import SwiftUI import Combine private final class ViewModel: ObservableObject { @Published var isPresented = false } struct ContentView: View { @Namespace private var namespace @StateObject private var viewModel = ViewModel() // @State private var isPresented = false var body: some View { TabView { Button { viewModel.isPresented = true } label: { Text(Start) } .tabItem { Image(systemName: house) Text(Home) } Text(Search) .tabItem { Image(systemName: magnifyingglass) Text(Search) } Text(Profile) .tabItem { Image(systemName: person) Text(Profile) } } .sheet(isPresented: $viewModel.isPresented) { Text(Sheet) .presentationDragIndicator(.visible) .navigationTransition(.zoom(sourceID: tabViewBottomAccessoryTransition, in: namespace)) } .tabViewBottomAccessory { Button { viewMo
Replies
7
Boosts
0
Views
388
Activity
6d
Reply to Bottom toolbar Button truncated on Mac Catalyst 26
Hello cht1995, [quote='881559022, cht1995, /thread/804585?answerId=881559022#881559022, /profile/cht1995'] It's been more than 6 months and this problem still persists in Xcode 26.3. Bump for visibility.[/quote] Did you file a bug report about this issue in Feedback Assistant? If so, please post the FB number here so we can investigate further. Thanks in advance, Richard Yeh  Developer Technical Support
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
6d
Bottom toolbar Button truncated on Mac Catalyst 26
On Mac Catalyst 26, a Button bar item in a bottom toolbar look squished. This happens only when the Mac Catalyst Interface option is set to Optimize for Mac. When it is set to Scale to match iPad, the buttons look fine. For example, in the screenshots below, the text button should say Press Me, instead of … A simple reproducible snippet and a screenshot below. The toolbar button comparison between Scale to match iPad and Optimize for Mac are shown. Optimize for Mac Scale to match iPad import SwiftUI struct ContentView: View { @State private var selectedItem: String? = Item 1 let items = [Item 1, Item 2] var body: some View { NavigationSplitView { List(items, id: .self, selection: $selectedItem) { item in Text(item) } .navigationTitle(Items) } detail: { if let selectedItem = selectedItem { Text(Detail view for (selectedItem)) .toolbar { ToolbarItemGroup(placement: .bottomBar) { Text(Hello world) Spacer() Button(Press Me) { } Spacer() Button { } label: { Image(systemName: plus) .imageScale(.large) } }
Replies
3
Boosts
0
Views
439
Activity
6d
Reply to Text alignment issue in iOS 26.4
Hello RolfS, I haven't come across this issue before. This might have to do with the specifics of your implementation. Glad to hear that you have a usable workaround. Please file a bug report and include a focused sample project (feel free to reuse your code snippet) that replicates this issue. Once you open the bug report, please post the FB number here for my reference. If you have any questions about filing a bug report, take a look at Bug Reporting: How and Why? If you're not familiar with preparing a test project, take a look at Creating a test project. Thank you for reporting, Richard Yeh  Developer Technical Support
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
6d
Text alignment issue in iOS 26.4
There appears to be a serious issue in iOS 26.4 regarding text alignment. All text strings are rendered right-aligned instead of left-aligned, even when explicitly setting the paragraph style to NSTextAlignmentLeft. This behavior is unexpected and seems to indicate a regression in text rendering. Could you please confirm whether this is a known issue in iOS 26.4? I am using the following code in a central function that has been working reliably for years across all my apps. Best regards, Rolf Code: NSMutableParagraphStyle* paragraphLeft = [[NSMutableParagraphStyle alloc] init]; if (paragraphLeft != nil) { paragraphLeft.alignment = NSTextAlignmentLeft; NSDictionary *settings = @{ NSFontAttributeName : font, NSForegroundColorAttributeName : fontclr, NSParagraphStyleAttributeName : paragraphLeft }; [theString drawAtPoint:CGPointMake(x, y - font.ascender) withAttributes:settings]; [paragraphLeft release]; }
Topic: UI Frameworks SubTopic: UIKit
Replies
3
Boosts
0
Views
170
Activity
6d
Reply to How to hide route button `showsRouteButton = false` in `MPVolumeView` without deprecation warning?
Thanks so much for the post. My answer will not be to find ways to suppress of the deprecation warning. Spoiler alert. This warning indicates that the API including your method will cease to function, and the documentation advises utilizing the AVRoutePickerView as an alternative. Consequently, I would recommend transitioning entirely to the AVRoutePickerView. As that class you are using including the method showsRouteButton will stop working in the future releases. Please let me know if I can help you moving to the AVRoutePickerView as the documentation shows. Albert Pascual
  Worldwide Developer Relations.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
6d
DNS Issues?
I click in App Store Connect to view my app but there is a dns error. Tried Brave and Safari but have the same result. I just did update my Mac to Tahoe 26.4 . This site can’t be reached olympus-int.itunes.apple.com’s DNS address could not be found. Diagnosing the problem. DNS_PROBE_POSSIBLE
Replies
1
Boosts
0
Views
103
Activity
6d
Reply to Xcode Source Control pull/push hangs indefinitely, terminal Git works normally After Tahoe 26.3 (25D125) Update
I've just updated to Tahoe 26.4, and having similar issues that Xcode can't pull nor fetch but command line git works fine.
Replies
Boosts
Views
Activity
6d
Reply to Xcode Source Control pull/push hangs indefinitely, terminal Git works normally After Tahoe 26.3 (25D125) Update
We just updated to Tahoe and having same issue; works with CLI and hangs with Xcode 26.3 and 26.4. Note via the CLI we see: ** WARNING: connection is not using a post-quantum key exchange algorithm. ** This session may be vulnerable to store now, decrypt later attacks. ** The server may need to be upgraded. See https://openssh.com/pq.html So perhaps Xcode also sees this warning and is having issues parsing it?
Replies
Boosts
Views
Activity
6d
Reply to Can’t paste into Simulator after updating to Xcode 26.4
I can't confirm if this was a bug prior to 26.4 and, years-old posts online suggest de-checking then re-checking the option for it to work. I can confirm your screenshot and results. Also, the de- and re- checking workaround did not work.
Replies
Boosts
Views
Activity
6d
Reply to Zoom navigation transitions for tabViewBottomAccessory are not working in SwiftUI with ObservableObject or Observable
Still not fixed in iOS 26.4
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
6d