You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Xcode 15/iOS 17 automatically generates asset symbols.
The UIKitstruct in UIKit.swift causes a conflict in GeneratedAssetSymbols.swift (the Xcode generated file) and the Examples project fails to build:
DerivedData/PopoversExample-elyygqgsxdjpvofmfzweokndwyir/Build/Intermediates.noindex/PopoversExample.build/Debug-iphonesimulator/PopoversExample.build/DerivedSources/GeneratedAssetSymbols.swift:105:17: error: 'UIColor' is not a member type of struct 'PopoversExample.UIKit'
extension UIKit.UIColor {
~~~~~ ^
Popovers/Examples/PopoversExample/UIKit/UIKit.swift:11:8: note: 'UIKit' declared here
struct UIKit: View {
^
DerivedData/PopoversExample-elyygqgsxdjpvofmfzweokndwyir/Build/Intermediates.noindex/PopoversExample.build/Debug-iphonesimulator/PopoversExample.build/DerivedSources/GeneratedAssetSymbols.swift:120:17: error: 'UIImage' is not a member type of struct 'PopoversExample.UIKit'
extension UIKit.UIImage {
~~~~~ ^
Popovers/Examples/PopoversExample/UIKit/UIKit.swift:11:8: note: 'UIKit' declared here
struct UIKit: View {
^
The text was updated successfully, but these errors were encountered:
philipbel
added a commit
to philipbel/Popovers
that referenced
this issue
Nov 8, 2023
Xcode 15/iOS 17 automatically generates asset symbols.
The
UIKit
struct
inUIKit.swift
causes a conflict inGeneratedAssetSymbols.swift
(the Xcode generated file) and the Examples project fails to build:The text was updated successfully, but these errors were encountered: