login details for account '{email}' were rejected
Connecting a device and testing in Xcode have you had a no profiles error?
Showing All Messages The operation couldn’t be completed. Unable to log in with account '{email}'. The login details for account '{email}' were rejected. No profiles for '{bundle identifier}' were found: Xcode couldn't find any iOS App Development provisioning profiles matching '{bundle identifier}'.
These two messages are interconnected. To resolve this step, go
SwiftUI - custom navigation bar title
When managing a navigation title in Swift, you will have trodden down the path. Previously you have entered something like
.navigationTitle("Title")
If you wanted to alter the font used for the navigation area, alter the init() in the view:
How to remove row separators from a Form or List in SwiftUI?
Struggling to hide the SwiftUI separators in a List or Form?
The challenge
Creating the following form, separation lines appeared between NameLayout, FinalPhoto, RawPhoto, ApertureLayout and SubmitButton.
Core Data - customising the data model with a enum
Core Data - customising our data model
When you are using Core Data, and let's say that you have a requirement to have an attribute where the options available should be a defined list. Such as "Not Started", "Pending", "In Development" and "Completed". How do you create this as an option in Core Data?
SwiftUI: How to create and manage a List with ObservableObject
In SwiftUI, has made creating a list of item very easy. If you have an array containing the names of customers, these names can be displayed through the following code:
Xcode succeeded but nothing happens
I attempted the run command and the response I had was succeeded, but then nothing else happened!
I usually have this problem when a dependency is not updated.
The following steps usually works for me... note in bold are the Terminal commands such as (rm -rf Podfile.lock):
SwiftUI buttons - isPressed, isEnabled changing colours depending on action or state
API REST user login the right way
If you are receiving the following 403 errors:
- "message": "The used authentication method is not allowed on this route."
- "message": "This route can only be accessed by anonymous users."
Then keep reading for how to resolve them.
Attempting to log in to a Drupal site using REST API and I had to battle a few head winds along the way. What is worse, they were self imposed!
Cannot find '' in scope
When those simple annoyances are too frustrating! Yes we have all been there and I was really hoping that Apple would have fixed what is obviously a bug.
SwiftUI - publishing changes from background threads is not allowed
The purple warning notification of annoyance recently came my way! I received the following warning:
Publishing changes from background threads is not allowed; make sure to publish values from the main thread (via operators like receive(on:)) on model updates.
What was happening?
The functionality of the code uses URLSession to get a user's name via API and the display is simple piece that initially message of Hello {user}.