Questions tagged [xcode15]

This tag should only be used for questions specific to the usage and features of Xcode 15. 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].

63 questions
0
votes
1 answer

Runtime crash due to private PasswordManagerUI.framework

After upgrading to Xcode 15.0 beta 4 the iOS app started to crash while launching, with the following error: dyld[79107]: Symbol not found: _$s7SwiftUI4ViewP8SettingsE22settingsListAppearanceQryF Referenced from:…
iamszabo
  • 166
  • 2
  • 8
0
votes
1 answer

Why doesn't the text from a SwiftUI Label appear in the Xcode 15 string catalog?

When I use Xcode 15 beta 3 to add a string catalog to an existing project (created with Xcode 14) and then build the current scheme, the resulting Localizable.xcstrings file doesn't contain any text from SwiftUI Label views. It does contain text…
Paul
  • 1,897
  • 1
  • 14
  • 28
0
votes
1 answer

Build Swift for iOS and visionOS on both Xcode 14 and 15 without warnings

We'd like to find a way to write iOS-only Swift code blocks in code that supports multiple Apple platforms and runs without warnings on both Xcode 14 and 15. It's complicated by the fact that #if os(iOS) evaluates to true for visionOS so the test…
Paul Beusterien
  • 27,542
  • 6
  • 83
  • 139
0
votes
0 answers

Xcode 15 - preview screen shift problem in UIKit

I want to edit a view of my project using a preview, but I'm experiencing shifting issues on the preview screen (using iPhone 14 Pro display). I can't scale properly, resulting in white gaps on the left and top edges. Here is my view class Thank you…
0
votes
0 answers

Isn't iPhone SE (3rd generation) a arm64 architecture?

I got this weird error starting an app from Xcode 15 beta 2 iPhone SE (3rd generation) does not support the architecture of the selected executable. Switch to a device that supports arm64. But SE is arm64 isn't it???
Anton Tropashko
  • 5,486
  • 5
  • 41
  • 66
0
votes
1 answer

TipKit not accessible in even on Xcode 15 beta 2

link - https://developer.apple.com/videos/play/wwdc2023/10229/?time=0 I came across an interesting video from Apple's WWDC 2023 conference, titled "Discovering New Features with TipKit." It seems like TipKit is a new framework that enables…
Abdul Karim
  • 4,359
  • 1
  • 40
  • 55
0
votes
0 answers

In Xcode, create framework as target in same project as app vs separate project for framework

Main question Here is my scenario: I have app A in Xcode project X. I will create framework F to use in app A. I could create framework F inside project X as another target. I could also create a new project Y to hold framework F. What are the…
Jeff
  • 3,829
  • 1
  • 31
  • 49
0
votes
0 answers

Umbrella heade with directories exist next to it?

target 'SDK' has invalid header layout: umbrella header found at '.../Sources/SDK/include/SDK.h', but directories exist next to it: .../Sources/SDK/include/cpp, /.../Sources/SDK/include/hx; consider removing them But these directories contain the…
singpolyma
  • 10,999
  • 5
  • 47
  • 71
0
votes
1 answer

What does xcode mean "interoperabilityMode is unavailable"?

Trying to write an SPM package using the new C++ interop features when I put in swiftSettings: [.interoperabilityMode(.Cxx)]) I get the error "interoperabilityMode is unavailable" what does that mean? Do I need to enable something in xcode settings…
singpolyma
  • 10,999
  • 5
  • 47
  • 71
0
votes
1 answer

Swift: Unknown attribute 'Observable'

In Xcode 15 (still beta) with Swift 5.9, I want to use @Observable instead of @Observable struct Feature { let name: String } I'm getting the below error: Unknown attribute 'Observable'
Keshav
  • 2,965
  • 3
  • 25
  • 30
0
votes
0 answers

Why is 'Fix All Issues' always disabled in Xcode 13/14/15 beta?

I know this has been asked before for Xcode 9 or whatever. But it's been years now since I've seen it working. Does anyone know why? I mean, cleaning, restarting, deleting derived data doesn't do anything. It doesn't matter if there are multiple…
yuzer
  • 124
  • 8
0
votes
1 answer

Cannot call value of non-function type 'Bundle' using Xcode 15 beta-1

I am trying to build my project using Xcode 15 for iOS 17. So far I have solved many errors, but I am stuck with this one. From my understanding GeneratedAssetSymbols is an auto-generated file created by Xcode to list the resources within your…
Steven
  • 1,088
  • 1
  • 8
  • 16
0
votes
1 answer

Link failed in Xcode15

Assertion failed: (false && "Malformed property list"), function getProperties, file ObjC.cpp, line 241. enter image description here when i use xcode15 build my project, but link failed. How to fix it?
shixiaoda
  • 1
  • 1
0
votes
1 answer

Xcode 15 beta error in GeneratedAssetSymbols

I am trying the new Xcode 15 and got some compile errors on the GeneratedAssetSymbols at ColorResource and ImageResource structs. The errors are Type 'ColorResource' does not conform to protocol 'Equatable' and Type 'ColorResource' does not conform…
Naka
  • 1,008
  • 13
  • 14
-1
votes
0 answers

Xcode , can not find type ITEM and such module?

As you can see from my screenshot below, I keep getting these 2 errors and don't know how to remove them. 1 - No such module 'iPhoneNumberField' but iPhoneNumberField is correctly installed and worked. 2 - Cannot find type 'Item' in scope There…
Damiano Miazzi
  • 1,514
  • 1
  • 16
  • 38