Questions tagged [xcode13]

This tag should only be used for questions specific to the usage and features of Xcode 13. Do not use this tag just because you are using Xcode to develop your app. General Xcode questions should use the non-version specific [xcode] tag. Use tags appropriate for the OS such as [ios] or [macos].

459 questions
3
votes
1 answer

Xcode 13 crashing when adding a dictionary to the Info.plist from a target

Xcode Version 13.3 beta 3 (13E5104i) or Version 13.2.1 (13C100) When I add a dictionary to the Info.plist file from the Info tab in the project (for example with the Privacy - Location Temporary Usage Description Dictionary key), Xcode immediately…
alpennec
  • 1,864
  • 3
  • 18
  • 25
3
votes
0 answers

How to debug an iOS app extension in Xcode 13?

I know this question has been asked and answered for other Xcode versions here and other places, but I would like to know if the solution remains the same for Xcode 13. Basically, I am trying to debug an app extension by printing with NSLog,…
Eric
  • 569
  • 4
  • 21
3
votes
0 answers

Xcode 13 on Catalina

I downloaded Xcode 13.2.1 from Xcode Releases but as it is not supported for macOS Catalina I cannot install it. Are there any ways around this, other than to force upgrade to Big Sur (since it is a pain)?
ericosg
  • 4,926
  • 4
  • 37
  • 59
3
votes
7 answers

Export Archive with Xcode13: The data couldn’t be read because it isn’t in the correct format

Xcode 13.2.1 Exporting Archive for Development team with "Distribute App" fails Xcode 13.1 - works on the same MacBook to export IPA for development distribution. No errors!! Xcode13.2.1 "Validate App" is successful, Error "The data couldn’t be read…
lal
  • 7,410
  • 7
  • 34
  • 45
3
votes
2 answers

SwiftUI searchable on NavigationView always shown, hides only on scroll

I'm writing a fairly simple SwiftUI app about movies and I have this issue where the new .searchable modifier on NavigationView is always being shown, whereas it should be hidden, unless you pull down on the List. It hides it correctly if I scroll a…
Vedran Kopanja
  • 1,259
  • 12
  • 23
3
votes
0 answers

freeglut failing to open display '' on M1 mac

I am running a simple application to open a window and show some points in it in xcode 13. Everything seems to work fine, no import errors, all correct includes and dynamic libraries etc... but upon running the app the error is freeglut…
3
votes
2 answers

Can not upload ipa to TestFlight in Xcode 13 with error: The request timed out

I've updated Xcode to version 13.1 recently. After that, I can't use Xcode to upload ipa to TestFlight. I've received the error "The request timed out". Because of this problem, my CI/CD doesn't work anymore because it can't distribute ipa using…
Hoang Anh Tuan
  • 370
  • 3
  • 9
3
votes
1 answer

SwipeUp and Swiping Right not working correctly on XCUITest - M1 Mac

On an intel computer, my XCUITest test works perfectly fine to swipe left and swipe right on a cell using cell.swipeRight() or cell.swipeLeft(). On my m1 computer, cell.swipeLeft() works but cell.swipeRight() doesn't. I don't think it swipe right…
reutsey
  • 1,743
  • 1
  • 17
  • 36
3
votes
1 answer

Is it possible to have a confirmationDialog on SwiftUI Menu?

I've seen an app that uses Menu where when you press the a button, I'm asked to "confirm". This brought me to refactor my app: @State var confirmDeletion: Bool = false VStack { Button(role: .destructive) { self.confirmDeletion = true …
Sylar
  • 11,422
  • 25
  • 93
  • 166
3
votes
3 answers

App crashes on iOS 12 and below after building with Xcode 13

An app which was running successfully on iOS 9-15 now crashes on launch on iOS 9-12 when building with Xcode 13.1 (on M1 Pro) that I just upgraded to. It crashes on unarchive of the main storyboard due to use of UITabBarAppearance which only exists…
Bruce Webster
  • 171
  • 10
3
votes
1 answer

White Screen Shows for Minutes Before Launching App - Xcode 13 on iOS 15.1.1

This is a weird bug I'm getting using Xcode 13 and iOS 15.1.1. I've developed a simple app and when I run the app on iOS 15.1.1 (iPhone 13 Pro), before the app launches a white screen (black in case dark mode is ON), is shown, for couple of…
Arjun
  • 1,477
  • 1
  • 13
  • 23
3
votes
0 answers

Setting NSTableView control Size Programmatically

If I access the cell-based table view (NSTableView) through the storyboard, I find a property named controlSize under the size inspector. If I select 'large' from the drop-down menu, I will have a large font size in the list. That's great. But…
El Tomato
  • 6,479
  • 6
  • 46
  • 75
3
votes
1 answer

Xcode 13 - Building for iOS Simulator, but the linked framework '****.framework' was built for iOS

Very similar questions but Validate workspace is no longer available in XCode 13. building for ios simulator, but the linked and embedded framework .framework' was built for ios Building for iOS Simulator, but the linked framework '****.framework'…
3
votes
0 answers

xcode 13 Assertion failed in function roalloc, file DyldProcessConfig.cpp

Trying to compile and run an app in xcode13, but dyld assertion failed: dyld[13967]: Assertion failed: (next < &roBuffer[0x8000]), function roalloc, file DyldProcessConfig.cpp, line 653. dyld`__abort_with_payload: 0x100cd74d4 <+0>: mov x16,…
Emm
  • 31
  • 1
3
votes
1 answer

When using Apple DocC: How to not generate documentation? How to link to UIKit? How to generate docs for extensions?

I am using DocC for the first time, and after reading your docs, there are 4 things I don't know how to do it, can you help me? How can I mark public methods to tell DocC that I don't want to generate documentation for a specific method? For…
Ricardo
  • 2,831
  • 4
  • 29
  • 42