How do I fix this flutter iOS error in Xcode?
When I run the command "flutter build ios" - my app is built just fine. I can also run the app in the simulator. However, in Xcode, when I try to open the project, I get the error "unable to…
When I run the command "flutter build ios" - my app is built just fine. I can also run the app in the simulator. However, in Xcode, when I try to open the project, I get the error "unable to…
I'm trying to use Appium version 1.19.1 to test an ipad app on a physical ipad device that I have built with Xcode 12.3. Previously this has worked as expected, but recently I have not been able to get Appium…
So, I have a UIProgressView in a basic expense tracking app and I want to change its progress tint as it reaches the end from green to red progressively. I don't really know how to do this (I'm just starting…
I've developed a simple app that displays the live audio signal in a graph. I installed AudioKit via CocoaPods with source 'https://github.com/CocoaPods/Specs.git' platform :ios, '13.4' pod 'AudioKit', '=5.0.b1' Everything works perfectly fine and now I want to integrate this functionality…
I have the following playground and can't figure out why the ImageView width constraing is not being respected and it fills the remaining space on the StackView import UIKit import PlaygroundSupport let view = UIView(frame: CGRect(x: 0, y: 0, width:…
I have been trying to integrate FirebaseAuth based on following guide: https://firebase.google.com/docs/auth/ios/firebaseui As I only have enabled Sign-in with Google, I have added pods like, pod 'FirebaseUI/Auth' pod 'FirebaseUI/Google' And installed Pods from Terminal. When Pods get installed properly, I…
I am trying to load custom data type from my API and display it on my landing page of an iOS app. As i understand, I should call something like: override func viewDidLoad() { performSelector(inBackground: #selector(fetchJSON), with: nil) let myCustomDataType…
I wanted to make an icon to my application. I want to install an application but I'm getting errors like this. Can you help me. Although I have edited my info.flist file, I am getting many errors. That's why I…
I need to put the latest version of the app on AppStoreConnect to test it on TestFlight. I encounter a problem when archiving the project in order to upload it on AppStoreConnect and be able to add a new version…
I'm trying to pop up a UIMenu once the user press the correct UIBarButton, but the problem is the UIMenu doesn't pop up and I don't know why, would be cool if you guys can help me with that. I…