skip to Main Content

iOSSimulator X: Failed to launch app with identifier: XXX – Ios swift

On our aws mac host, xcodebuild fails to launch our app on the ios simulator. Here is the command: xcodebuild ONLY_ACTIVE_ARCH=NO CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ENABLE_TESTABILITY=YES -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14,OS=16.0' -workspace XXXXX.xcworkspace -scheme Stage -configuration Debug test -verbose and here…

VIEW QUESTION

Xcode – javascript button actions are not responding

Today, I was creating a calculator, but when I click on the numbers nothing happenes. There are no messages in the console at all after the clicks Code in GitHub: https://github.com/GuillermoSalvador/A const display = document.querySelector("#display"); const buttons = document.querySelectorAll("buttons"); buttons.forEach((item)=>{…

VIEW QUESTION

Xcode – Error installing cocoapods: ERROR: Failed to build gem native extension. Ventura

sudo gem install cocoapods Building native extensions. This could take a while... ERROR: Error installing cocoapods: ERROR: Failed to build gem native extension. current directory: /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.5/ext/ffi_c /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/bin/ruby -I /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0 -r ./siteconf20221026-22941-v40jeb.rb extconf.rb checking for ffi.h... *** extconf.rb failed *** Could…

VIEW QUESTION

Xcode – Load SVG String to UIImage (Swift)

I have a SVG Data downloaded from Internet in SVG format. <svg viewBox="0 0 600 450" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="600" height="450" fill="#E9F0FC"></rect><g transform="translate(0,410)" fill="none" font-size="10" font-family="sans-serif" text-anchor="middle" style="font-size: 8px;"><g class="tick" opacity="1" transform="translate(49.5,0)"><text fill="currentColor" ... And I have a UIImageView where…

VIEW QUESTION
Back To Top
Search