Post

Replies

Boosts

Views

Activity

Comment on Get CloudKit records created by specific user
Ok something I just found by testing a theory. The existing records are not showing when I do the query you suggested previously, but if I create a new record from CloudKit console then it shows in the query. Also if I edit a record using CloudKit console with the iCloud user then it shows... Does this mean that only the new records are going to get indexes? And what about once I deploy these changes to production, am I going to have problems for a while because it isn't indexing properly?
Topic: Programming Languages SubTopic: Swift Tags:
Dec ’24
Comment on SwiftUI - Using the Drag and Magnification Gestures Sequenced
Yea, I was doing this for my scaling: `Image(uiImage: image)                     .resizable()                     .frame(width: width, height: height)                     .clipShape(RoundedRectangle(cornerRadius: 20))                     .scaleEffect(self.isDragging ? 1.5 : 1)                     .offset(self.currentPosition)                     .gesture(combined)                     .scaleEffect(self.scale)                     .onAppear{                         self.loadImage()` So basically assigning the changed scale to the .scaleEffect() of the view. I also tried with the new .onUpdated() in the MagnificationGesture, like this: `.gesture(MagnificationGesture()                         .updating($scale, body: { (value, scale, trans) in                             scale = value.magnitude                         }))             .scaleEffect(scale)         And defined@GestureState private var scale: CGFloat = 1.0` in the definition of my view. None of this seems to work. :(
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’22
Comment on Get CloudKit records created by specific user
Ok something I just found by testing a theory. The existing records are not showing when I do the query you suggested previously, but if I create a new record from CloudKit console then it shows in the query. Also if I edit a record using CloudKit console with the iCloud user then it shows... Does this mean that only the new records are going to get indexes? And what about once I deploy these changes to production, am I going to have problems for a while because it isn't indexing properly?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’24
Comment on Get CloudKit records created by specific user
Ok, I'll try that. But what if that doesn't work either? How can I know if it is because the indexing is failing, and how can I fix that?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’24
Comment on Get CloudKit records created by specific user
No, that also shows no records. But I can see the the user's id when I just click on the "recordName" of one of the records that should be showing up in the query.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’24
Comment on How do I fetch all CloudKit Records created by the current user?
What should I do if the user id that comes back in the "fetchUserRecordIDWithCompletionHandler" matches records but the query using the reference returns nothing? Is there something that would cause the query to come back successful but empty, even when there are records present? I verified the records exist using the CloudKit console.
Replies
Boosts
Views
Activity
Dec ’24
Comment on CloudKit record exists (added days ago), does not get returned by query but can be fetched by ID
wow...Just figured out why it is acting like this! And it is aggravating.... If you edit a record without all the fields showing in the results list it breaks the query. :( If I edit the same record and remove the value and re-add it with all fields showing in the results, then the query starts working....
Replies
Boosts
Views
Activity
Oct ’24
Comment on Subscription Unavailable - Strange Behavior with StoreKit
I am having the same issue reported in this thread. Is there something I have to do to get this working again?
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Aug ’24
Comment on SwiftUI and MapKit - Find address from coordinates
Thank you, I'll check it out.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Aug ’24
Comment on How to resolve the "this application is not recognized by Game Center" error
I am also experiencing this issue.. Opening a ticket…:( The fake leaderboard and achievement trick doesn’t seem to work…. :(
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’22
Comment on SwiftUI - Using the Drag and Magnification Gestures Sequenced
Yea, I was doing this for my scaling: `Image(uiImage: image)                     .resizable()                     .frame(width: width, height: height)                     .clipShape(RoundedRectangle(cornerRadius: 20))                     .scaleEffect(self.isDragging ? 1.5 : 1)                     .offset(self.currentPosition)                     .gesture(combined)                     .scaleEffect(self.scale)                     .onAppear{                         self.loadImage()` So basically assigning the changed scale to the .scaleEffect() of the view. I also tried with the new .onUpdated() in the MagnificationGesture, like this: `.gesture(MagnificationGesture()                         .updating($scale, body: { (value, scale, trans) in                             scale = value.magnitude                         }))             .scaleEffect(scale)         And defined@GestureState private var scale: CGFloat = 1.0` in the definition of my view. None of this seems to work. :(
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’22