Skip to main content
32
results
Andrew Fletcher
The error you're encountering indicates an issue with the ffi gem during the CocoaPods update. The error message suggests trying to run the gem pristine command to fix it. Using terminal - run the following command: gem pristine ffi --version 1.16.3This command will attempt to restore the ffi gem to its pristine state, resolving any issues with its extensions. After running this command, try running pod update again pod updateIf you encounter any permission issues, you might need to use...
Andrew Fletcher
Creating a foreach loop such as  var maxDigits: Int = 5 private var...
Andrew Fletcher
To completely remove Microsoft Remote Desktop from OSX you need to perform the...
Andrew Fletcher
The challenge I was facing, I had written a script to scan barcodes and use...
Andrew Fletcher
In Xcode and executing a run command, the response error was: { "name":...
Andrew Fletcher
Working hard developing your app and now it's time to let others begin testing your team's work.  Fortunately, the process is far more streamlined nowadays.  Don't misunderstand my comment, for newbies there remain barriers and hurdles to cross. ‍ The App I'm walking through today has been built with Typescript and Angular.  The process is the same with native iOS app too. TestFlight offers testing for two types of groups, internal and external.  Getting to the facts with...
Andrew Fletcher
 ERROR Error: Uncaught (in promise): TypeError: undefined is not an object...
Andrew Fletcher
In Xcode attempting to build or run an app, I receiving a framework...
Andrew Fletcher
While loading an ionic project, in Xcode when performing a run routine I had the...
Andrew Fletcher
Connecting a device and testing in Xcode have you had a no profiles...
Andrew Fletcher
Whilst working through an edit person view in a SwiftUI project, I experienced the following two errors: Return from initializer without initializing all stored properties Cannot convert value of type 'String' to expected argument type 'Binding<String?>' Many of the examples I was finding through Google were about showing one variable solutions.  However, if you are like me - my situation didn't fall in to this category.  As I have indicated, the view I was working on was a...
Andrew Fletcher
When managing a navigation title in Swift, you will have trodden down the path....
Andrew Fletcher
Struggling to hide the SwiftUI separators in a List or Form?    The...
Andrew Fletcher
Core Data - customising our data model When you are using Core Data, and let's...
Andrew Fletcher
In SwiftUI, has made creating a list of item very easy.  If...