Post

Replies

Boosts

Views

Activity

CoreData CloudKit Sync not working between iOs and MacOS
Hi All, I work on a cross platform app, iOS/macOS. All devises on iOS could synchronize data from Coredata : I create a client, I see him an all iOS devices. But when I test on macOs (with TestFlight) the Mac app could not get any information from iOs devices. On Mac, cloud drive is working because I could download and upload documents and share it between all devices, so the account is working but with my App on MacOS, there is no synchronisation. idea????
2
0
1.2k
Sep ’25
swiftUI - textfield error expected argument CGRect
a simple code for a textfield in swiftUI @State private var wTitre:String = "xxx" TextField("Entrez votre texte ici", text:$wTitre) .textFieldStyle(RoundedBorderTextFieldStyle()) This code works on a projet, but in other one, I have this message, as if textfield waiting for a frame parameter ???? Cannot convert value of type 'String' to expected argument type 'CGRect a
0
0
672
Apr ’23
Xcode 14 - iOs 16.0.2 - attempt to insert nil object from objects[0]
Since I update Xcode (13 -> 14) and install iOs 16 on iPhone, I have this fatal error when I try to launch VNDocumentCameraViewController I do not understand why and where the error is? before the update, the scanner worked and I haven't got this message NSInvalidArgumentException', reason: '*** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[0]' let scannerViewController = VNDocumentCameraViewController() scannerViewController.delegate = self present(scannerViewController, animated: true) code-block
4
0
3.4k
Oct ’22
VNDocumentCameraViewController - crash with fatal error (iOs16)
With iOS 16, I have a fatal error when I launch VNDocumentCameraViewController let myScanViewController = VNDocumentCameraViewController() myScanViewController.delegate = self self.present(myScanViewController, animated: false) On my project, this function worked file with older operating system (like iOS 14, iOS 15) info.plist --> NSCameraUsageDescription is present with description Before the camera view appear, I'v got a fatal error and I do not know where to check or add a breakpoint to know where it try to add a nil object Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: [__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[0]'
3
0
1.7k
Oct ’22
datepicker with blank square instead of Date
Hi all, I do not understand why this datepicker display a blank square and not the real date on compact mode ... in debug, the datepicker is not null but with the good value (date) when I click on, the date is available... If I change the date, the display is fine after.... why in viewwillapear, the date picker show a blank square and note the real date???
0
0
1.1k
Aug ’22
Xcode memory RAM - requirements
Last year, I changed my iMac i7 (2015) to a new Mac mini M1 with SD disk. I saw the difference, it was incredible fast...but now after one year of working on my project, I get freeze screen and automatic reboot I have 16Go RAM...and often more than 10Go for xcode ! I work with storyboard and I have more than 100 VC. Do I need to change parameter on Xcode to optimize or I must have now min 32 RAM. What is the best requirement for important project?
2
0
2.2k
Jul ’22
NSPersistentCloudKitContainer - notification
I would like to implement notifications about NSPersistentCloudKitContainer I find this classe but I receive no notifications in my app!?! Do I need more settings to use it? thanx for your help import Combine import CoreData @available(iOS 14.0, *) class SyncMonitor { /// Where we store Combine cancellables for publishers we're listening to, e.g. NSPersistentCloudKitContainer's notifications. fileprivate var disposables = Set<AnyCancellable>() init() { NotificationCenter.default.publisher(for: NSPersistentCloudKitContainer.eventChangedNotification) .sink(receiveValue: { notification in if let cloudEvent = notification.userInfo?[NSPersistentCloudKitContainer.eventNotificationUserInfoKey] as? NSPersistentCloudKitContainer.Event { // NSPersistentCloudKitContainer sends a notification when an event starts, and another when it // ends. If it has an endDate, it means the event finished. if cloudEvent.endDate == nil { print("Starting an event...") // You could check the type, but I'm trying to keep this brief. } else { switch cloudEvent.type { case .setup: print("Setup finished!") case .import: print("An import finished!") case .export: print("An export finished!") @unknown default: assertionFailure("NSPersistentCloudKitContainer added a new event type.") } if cloudEvent.succeeded { print("And it succeeded!") } else { print("But it failed!") } if let error = cloudEvent.error { print("Error: \(error.localizedDescription)") } } } }) .store(in: &disposables) } }
1
0
1.9k
Jun ’22
CoreData CloudKit Sync not working between iOs and MacOS
Hi All, I work on a cross platform app, iOS/macOS. All devises on iOS could synchronize data from Coredata : I create a client, I see him an all iOS devices. But when I test on macOs (with TestFlight) the Mac app could not get any information from iOs devices. On Mac, cloud drive is working because I could download and upload documents and share it between all devices, so the account is working but with my App on MacOS, there is no synchronisation. idea????
Replies
2
Boosts
0
Views
1.2k
Activity
Sep ’25
Capabilities : Tap To pay
Hello, I can see this option in my certificate on the developer.apple.com platform. The entitlements file is updated with: com.apple.developer.proximity-reader.payment.acceptance code-block I’ve created a new profile for development and App Store, but in Release mode, my profile is not recognized… What configuration might be missing?
Replies
1
Boosts
0
Views
638
Activity
Dec ’24
GIT - uncommitted changes
Since updating from Xcode 14 to Xcode 15, I've had to manually select all the changed files. Is there a preference setting or a way to automate this process, like before? I need to manually click on 'Stage Change' next to the 'M' in the 'Changes' view. Thank you very much for your heeeeelp!
Replies
2
Boosts
0
Views
1.8k
Activity
Oct ’23
create PDF/A-3 with XML
Hi all, I create PDF from my app, but I would like to know if it's possible to create PDF/A-3 with PDFKIT and integrate XML into ?
Replies
0
Boosts
0
Views
746
Activity
Jun ’23
swiftUI - textfield error expected argument CGRect
a simple code for a textfield in swiftUI @State private var wTitre:String = "xxx" TextField("Entrez votre texte ici", text:$wTitre) .textFieldStyle(RoundedBorderTextFieldStyle()) This code works on a projet, but in other one, I have this message, as if textfield waiting for a frame parameter ???? Cannot convert value of type 'String' to expected argument type 'CGRect a
Replies
0
Boosts
0
Views
672
Activity
Apr ’23
CollectionView cell swapping after longPressure
I create a new process for the drag n drop to swap Cell. it's working but I would like to create a background at the initial Cell after moving it, instead of blank cell. Thanx for your response
Replies
1
Boosts
0
Views
918
Activity
Dec ’22
Xcode 14 - iOs 16.0.2 - attempt to insert nil object from objects[0]
Since I update Xcode (13 -> 14) and install iOs 16 on iPhone, I have this fatal error when I try to launch VNDocumentCameraViewController I do not understand why and where the error is? before the update, the scanner worked and I haven't got this message NSInvalidArgumentException', reason: '*** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[0]' let scannerViewController = VNDocumentCameraViewController() scannerViewController.delegate = self present(scannerViewController, animated: true) code-block
Replies
4
Boosts
0
Views
3.4k
Activity
Oct ’22
VNDocumentCameraViewController - crash with fatal error (iOs16)
With iOS 16, I have a fatal error when I launch VNDocumentCameraViewController let myScanViewController = VNDocumentCameraViewController() myScanViewController.delegate = self self.present(myScanViewController, animated: false) On my project, this function worked file with older operating system (like iOS 14, iOS 15) info.plist --> NSCameraUsageDescription is present with description Before the camera view appear, I'v got a fatal error and I do not know where to check or add a breakpoint to know where it try to add a nil object Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: [__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[0]'
Replies
3
Boosts
0
Views
1.7k
Activity
Oct ’22
datepicker with blank square instead of Date
Hi all, I do not understand why this datepicker display a blank square and not the real date on compact mode ... in debug, the datepicker is not null but with the good value (date) when I click on, the date is available... If I change the date, the display is fine after.... why in viewwillapear, the date picker show a blank square and note the real date???
Replies
0
Boosts
0
Views
1.1k
Activity
Aug ’22
Xcode memory RAM - requirements
Last year, I changed my iMac i7 (2015) to a new Mac mini M1 with SD disk. I saw the difference, it was incredible fast...but now after one year of working on my project, I get freeze screen and automatic reboot I have 16Go RAM...and often more than 10Go for xcode ! I work with storyboard and I have more than 100 VC. Do I need to change parameter on Xcode to optimize or I must have now min 32 RAM. What is the best requirement for important project?
Replies
2
Boosts
0
Views
2.2k
Activity
Jul ’22
NSPersistentCloudKitContainer - notification
I would like to implement notifications about NSPersistentCloudKitContainer I find this classe but I receive no notifications in my app!?! Do I need more settings to use it? thanx for your help import Combine import CoreData @available(iOS 14.0, *) class SyncMonitor { /// Where we store Combine cancellables for publishers we're listening to, e.g. NSPersistentCloudKitContainer's notifications. fileprivate var disposables = Set<AnyCancellable>() init() { NotificationCenter.default.publisher(for: NSPersistentCloudKitContainer.eventChangedNotification) .sink(receiveValue: { notification in if let cloudEvent = notification.userInfo?[NSPersistentCloudKitContainer.eventNotificationUserInfoKey] as? NSPersistentCloudKitContainer.Event { // NSPersistentCloudKitContainer sends a notification when an event starts, and another when it // ends. If it has an endDate, it means the event finished. if cloudEvent.endDate == nil { print("Starting an event...") // You could check the type, but I'm trying to keep this brief. } else { switch cloudEvent.type { case .setup: print("Setup finished!") case .import: print("An import finished!") case .export: print("An export finished!") @unknown default: assertionFailure("NSPersistentCloudKitContainer added a new event type.") } if cloudEvent.succeeded { print("And it succeeded!") } else { print("But it failed!") } if let error = cloudEvent.error { print("Error: \(error.localizedDescription)") } } } }) .store(in: &disposables) } }
Replies
1
Boosts
0
Views
1.9k
Activity
Jun ’22
csv file with Unicode character like \U0082
Hi All, How to transform or decode file with unicode? In debug, I see the text like this "r\U0082duc." , and I need to show text with accent --> réduc.
Replies
4
Boosts
0
Views
1.5k
Activity
Jun ’22
Best practice - 2 applications with specific bank account
Hi All, What is the best practice if I develop 2 applications on 2 differents bank account? Best regards,
Replies
0
Boosts
0
Views
874
Activity
Jun ’22
Xcode 13.3 - can't update
I update my iPhone and iPad on iOS 15.4....and need to update Xcode in 13.3....but on APPStore when I upload it, at the end, nothing happen just stay in loop ! know how to fix it?
Replies
5
Boosts
0
Views
2.3k
Activity
Mar ’22
containerURL(forSecurityApplicationGroupIdentifier:)
A URL indicating the location of the group's shared directory in the file system. In iOS, the value is nil when the group identifier is invalid Could you tell me all the cases when URL is nil? it seems Some client could work without any problem but some return a nil URL
Replies
0
Boosts
0
Views
1.1k
Activity
Mar ’22