Xcode – Navigation Link Using a form SwiftUI
I want to move to another view using a button from a form, I'm trying to make a settings page. The code below, I managed how to open a URL from a form, now I want to open another page…
I want to move to another view using a button from a form, I'm trying to make a settings page. The code below, I managed how to open a URL from a form, now I want to open another page…
This error always happens whenever I add a new Package via Swift Package Manager in Xcode: Cannot fetch library I've already configured my GitHub Auth Token setting in Xcode and registered my GitHub account. My macOS version is Monterey 12.1,…
We're having some strange issue with our app and/or Testflight since a few days ago: our app runs fine on simulator and devices (iOS 12, iOS 14 & iOS 15) when run from Xcode, but it crashed at launch when…
I am currently trying to run tests using Appium on a real iOS device, with the pytest and selenium framework. Before running tests, I successfully built the WebDriverAgent onto the device and started the Appium server. After entering the pytest…
My iPhone is connected to the mac (Can be seen under System Information>USB>iPhone) but Xcode does not let me use the iPhone and it says at the app scheme "No devices connected to My Mac." I will be really happy…
I made an apps with only using XIB (without storyboard). so to navigate I'm using this code to push some of the views: let vc = SecondViewController() self.navigationController?.pushViewController(vc, animated: true) I already make the first vc as rootvc, so it…
I want to disable firebase analytics from collecting & sending events when I'm building, testing & debugging via an Xcode scheme argument, if able. I'm aware you can edit the info.plist to disable (Firebase Docs) but would prefer a solution…
I have just updated my Macbook to Monterey and installed XCode 13. I'm now seeing errors when trying to link my code - for example one library needs to link to the system python2.7, but gives the error: Keiths-MacBook-Pro:libcdb keith$…
I create an application with multiple build config, bundle id, and product name. I can run the unit test but in the unit test code, there is an error shows No such module 'ProjectName' like in the picture below. Still,…
Here is my popup view controller: import UIKit class PopupViewController: UIViewController { var bigVC = GameViewController() var cardPhoto: UIImage? var nameLabel: String? var bio: String? var index: Int? @IBOutlet weak var photo: UIImageView! @IBOutlet weak var label: UILabel! @IBOutlet weak…