Post

Replies

Boosts

Views

Activity

Reply to Kanban board layout with UICollectionViewCompositionalLayout
Hi @DTS Engineer thank you for your reply. I have already reviewed the sample code prior to asking my question and it's also worth mentioning that I have implemented various compositional layout configurations with section headers without any problem. However, when I attempted to implement this specific configuration (Kanban), I ran into issues with the headers. To clarify, I don't want the headers pinned, I want them to be on top of the content and scoll with the reste of the content when I scroll up and down, just like they would in a tableView. I would appreciate some insights. Thank you.
Jul ’24
Reply to NSPersistentCloudKitContainer and CloudKit for Sharing
Can you clarify on why a CKSubscription is needed? [Scenario A] User A shares a list of tasks with user B through a CKShare. User B gets access to the CKShare record and any modification made by user B is done directly to the CKShare object which represents a reference to the list of tasks of user A. The same applies to modifications made by user A -- they would be directly reflected on the CKShare record. Why would I need a CKSubscription in this case? [Scenario B] The only scenario where a CKSubscription would be needed is if CKShare is copied over to user B's Core Data/CloudKit. Then I would implement a CKSubscription to notify the Core Data object on user B's end of any change to CKShare and vice versa. What does Apple recommend: Implementing A or B?
Aug ’20
Reply to Obtain / reset a "3rd Party Mac Developer Installer" certificate
The following worked for a developer apparently, but not for me: Code Signing a Package For the first issue, I originally thought it was questioning which certificate I used to sign the app. My code signing of the app was correct, it was code signing the package file which I forgot to do. I logged into the Apple Developer portal and created a new Mac Installer Distribution certificate which I could use to properly sign the pkg file. Once I had the new certificate, I then built and signed the package: productbuild --component ./Permanent\ Eraser.app/ /Applications/ PermanentEraser.pkg --sign "3rd Party Mac Developer Installer: John Doe (12AB34567C)" Source: edenwaith.com
Jul ’20