Post

Replies

Boosts

Views

Activity

Reply to Can I submit an app "iPad version only" to App Store?
On your project > target > General you need to check only iPad deployment ...it's enough
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to local Core data and evolution in a distributed system
It will be ok that it was non sequential...the sequential is present only for local database and not for cloud database
Replies
Boosts
Views
Activity
Jun ’21
Reply to tableview with multiple selection but without delete button
MaheshSheliya > : I already use it self.tableview.isEditing = true self.tableview.allowsMultipleSelection = true self.tableview.allowsMultipleSelectionDuringEditing = true and after scroll, everything is ok???? So I need to hidden minus button when I select : self.tableview.isEditing = true
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’21
Reply to Collection view, cell size, image size
I understand, I fact I need the set aspect fill to image.....
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’21
Reply to Coredata and CloudKit not synchronized
in the part Singing & capabilities : I saw in Apple Document to leave default container but I haven't got this choice? Do I need to select my container?
Replies
Boosts
Views
Activity
Oct ’21
Reply to Cloudkit - Coredata and multiples database
Thank you for your response... It's working except that I loose my old container because when app start, there is no data...I will try to copy old data on new container
Replies
Boosts
Views
Activity
Jan ’22
Reply to iPad App existing, now want to add MacOs App
thanx for your response, I do it...but it's not enough because the metadata on TestFlight stay on iPad, and archive is not compatible with macOs.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jan ’22
Reply to iPad App existing, now want to add MacOs App
I change my info.plist with this new line on "Required device capabilities " and now I could test the application on my Mac.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jan ’22
Reply to iPad App existing, now want to add MacOs App
but I have another problem with MacApp...I create a new question for this, thanx for you help. https://developer.apple.com/forums/thread/699366
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jan ’22
Reply to CoreData CloudKit Sync not working between iOs and MacOS
it's ok now with this -
Replies
Boosts
Views
Activity
Feb ’22
Reply to Cloudkit sync only on opening App
It's really weird...I test my app with a new environnement on someone else : macMini, iPad, iPhone and everything is ok !!!!???
Replies
Boosts
Views
Activity
Feb ’22
Reply to Xcode 13.3 - can't update
still waiting .... it's really slow...
Replies
Boosts
Views
Activity
Mar ’22
Reply to Xcode 13.3 - can't update
it will be ok but really really long !!!
Replies
Boosts
Views
Activity
Mar ’22
Reply to csv file with Unicode character like \U0082
the file is not a json, it's a csv (comma delimiter) from .dbf I decode with let data = try Data(contentsOf: URL(fileURLWithPath: path), options: NSData.ReadingOptions.mappedIfSafe)        let dataEncoded = String(data: data, encoding: .isoLatin1) If I try to encode in utf8, dataEncoded is nil
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
May ’22
Reply to csv file with Unicode character like \U0082
after few search, in fact I do a loop over each character and check unicodescalar "String(char).unicodeScalars" switch char1 {       case "\u{0080}":            charactere = "Ç"       case "\u{0081}":           charactere = "." etc...
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’22