Post

Replies

Boosts

Views

Activity

Reply to Error: Invalid_Client - What?
We got this resolved by going into the More Configure and adding our domain, making sure the SPF tick is green (if its not green, do a quick google to find out how to fix it for your config). After this, we stopped getting invalid_client errors. The thing that made us stumble on this was it didn't appear important on account of it saying it was for the emails - we skimmed over it thinking we could come back to it later..
Mar ’21
Reply to invalid_client in 'Sign in with Apple' /auth/authorize
We got this resolved by going into the More Configure and adding our domain, making sure the SPF tick is green (if its not green, do a quick google to find out how to fix it for your config). After this, we stopped getting invalid_client errors. The thing that made us stumble on this was it didn't appear important on account of it saying it was for the emails - we skimmed over it thinking we could come back to it later..
Mar ’21
Reply to Sign In With Apple from AWS Cognito returns Invalid Client
We got this resolved by going into the More Configure and adding our domain, making sure the SPF tick is green (if its not green, do a quick google to find out how to fix it for your config). After this, we stopped getting invalid_client errors. The thing that made us stumble on this was it didn't appear important on account of it saying it was for the emails - we skimmed over it thinking we could come back to it later..
Mar ’21
Reply to Navigation title not appearing correctly in SwiftUI
Just to expand on @OOPer's comment and spell it out for simple-folk such as myself who are fairly new to SwiftUI - You don't need to "nest" a NavigationView. By that it means (including pseudo-code) View A -> View B View A var body: some View { NavigationView( .. stuff here .navigationBarTitle("Main menu") ) } View B var body: some View { Text("Stuff to show on the next page") .navigationBarTitle("sub menu", displayMode: .inline) } Seems kind of obvious when you think about it, coming from UIKit, you wouldn't be able to push a UINavigationController into the navigation stack.
Jan ’22
Reply to Drawing MKPolylines on map make app unresponsive. Anybody else have this problem ?
I'm getting this very quickly in areas that require a lot of MKPolylineRenderer / MKPolygonRenderer / MKMultiPolygonRenderer. I have tried changing mapType on when moving about, before removing/adding new overlays, but it's just totally flaking out on iOS 16.1.1. This is kind of a critical issue for us as it's breaking our production application. Has anyone got any insight into this this recently?
Nov ’22