skip to Main Content

Xcode build failure due to Undefined symbol: __swift_FORCE_LOAD_$_swiftFileProvider

Building failed with Xcode 13beta for React Native 0.64.2 project. It is on macOS Big Sur. The detail of error is: Undefined symbols for architecture x86_64: "__swift_FORCE_LOAD_$_swiftFileProvider", referenced from: __swift_FORCE_LOAD_$_swiftFileProvider_$_YogaKit in libYogaKit.a(YGLayoutExtensions.o) (maybe you meant: __swift_FORCE_LOAD_$_swiftFileProvider_$_YogaKit) ld: symbol(s) not found…

VIEW QUESTION

Xcode – How do you pass data between 2 ViewControllers without displaying a Viewcontroller, seguing, or changing the frame

protocol useForDist { func findpindist() } class ViewController1: UIViewController, MKMapViewDelegate, useForDist { override func viewDidLoad() { super.viewDidLoad() } func findpindist() { print("Test") } } class HomePageController: UIViewController { var delegate: useForDist? override func viewDidLoad() { super.viewDidLoad() self.delegate?.findpindist() } } Why…

VIEW QUESTION
Back To Top
Search