Post

Replies

Boosts

Views

Activity

Reply to Manage European Union digital services act compliance information
So, if an app is on sell in EU, the account holder is a trader. In this case why Apple ask for the declaration, with the risk that many developer, which are hobbyist or individual as you said Captain Summers, can made a naive wrong declaration? Perhaps the only solution to avoid having the personal data (phone number and so) be published is not to sell in EU. Both cases, naive wrong declaration and stop to sell in EU, should be avoided, by Apple in first. (There is a reason if many EU citizen are disgusted.)
Apr ’24
Reply to What's the correct writing in RightToLeft languages
Apple answer is: "the behavior you experienced is currently functioning as intended. The definition for NSWritingDirectionNatural has been different between AppKit & UIKit. With AppKit, the fallback direction for a content without any strong directionality is based on the primary localization. With UIKit, it’s LTR. We cannot change the behavior for AppKit since it requires a big amount of localization changes. If SwiftUI wants to use the UIKit behavior for AppKit, it should be using UIKit application context behavior."
Sep ’23
Reply to stringsdict doesn't works
Thank you Claude31 for your detailed explanation. You let my understand that the error in my simple example (from "Streamline your localised strings" in WWDC21) is the use of %d, which refers to 32bit integer, instead of %ld, which refers to 64bit integer. While I corrected the mistake, I realised that a widely portable stringsdict should have all theoretically possible values, i.e. "Order %d" (int, or 32-bit integer), "Order %ld" (long int) and "Order %lld" (long long int).
Topic: Programming Languages SubTopic: Swift Tags:
Dec ’22
Reply to How to put help book in Xcode project?
On a try I found the solution: In the target / Build Phase / Copy Bundle Resources there were the files of the help book instead to the help book itself. I removed them. I removed the whole help book form the Xcode project. I recreated the book help hierarchy directly in the project file system; in the finder, not in Xcode. Finally, in Xcode, I added ("Add files to ...") the help book. This was recognised by Xcode as a bundle and added in the "Copy Bundle Resources" of the target.
Jun ’22
Reply to Test flight app
The TestFlight invite code is sent by the sw developer from the App Store Connect of its testing sw. You should ask him/her.
Jun ’22
Reply to “Other” and “System” storage is taking up literally over half of my storage
Other is filled by the system and some app logs. To, temporally, clean up the "other" space, which don'l let me to perform an update on my iPhone 6s-16GB, I do: Backup (I do it on the Mac selecting "Back up all the data on your iPhone to this Mac") Delete everything: General / Transfer or Reset iPhone / Erase All Content and Settings Wait for the restart; the iPhone is as new. Login on appleseed.apple.com, download the iOS profile and restart (this step of course can be omitted) Restore from the backup. At this point the "Other" is empty.
Topic: App & System Services SubTopic: Hardware Tags:
Jun ’22
Reply to listRowSeparatorTint not updated
Thank you darkpaw. The FB id is FB17087890
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Apr ’25
Reply to Trying to pull size info from a SKShapeNode objects
Old question but an answer can still be useful to someone. let frameRect = mySKShapeNode.frame let containingRect = mySKShapeNode.calculateAccumulatedFrame() frameRect is the CGRect frame of the node containingRect is the CGRect containing the node, eventually rotated Look at calculateAccumulatedFrame()
Topic: Graphics & Games SubTopic: SpriteKit Tags:
Replies
Boosts
Views
Activity
Jan ’25
Reply to SCNNode into SKScene is deformed when hit an object
Hello @DTS Engineer Greg, when the ball hit the fence and its size changes, why the 2Dball diameter isn't altered? There is a way to avoid the frame change reflected in the sphere change? Thank you and best regards, Luca
Topic: Graphics & Games SubTopic: SpriteKit Tags:
Replies
Boosts
Views
Activity
Nov ’24
Reply to Manage European Union digital services act compliance information
At the end I removed my app from the EU market.
Replies
Boosts
Views
Activity
May ’24
Reply to Manage European Union digital services act compliance information
So, if an app is on sell in EU, the account holder is a trader. In this case why Apple ask for the declaration, with the risk that many developer, which are hobbyist or individual as you said Captain Summers, can made a naive wrong declaration? Perhaps the only solution to avoid having the personal data (phone number and so) be published is not to sell in EU. Both cases, naive wrong declaration and stop to sell in EU, should be avoided, by Apple in first. (There is a reason if many EU citizen are disgusted.)
Replies
Boosts
Views
Activity
Apr ’24
Reply to DateComponentFormatter behaviour inconsistency
Which are the languages used for this testes?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’23
Reply to How to prevent access to new apps for AppStore connect users?
Is a possibility to create a new tester group?
Replies
Boosts
Views
Activity
Nov ’23
Reply to What's the correct writing in RightToLeft languages
Apple answer is: "the behavior you experienced is currently functioning as intended. The definition for NSWritingDirectionNatural has been different between AppKit & UIKit. With AppKit, the fallback direction for a content without any strong directionality is based on the primary localization. With UIKit, it’s LTR. We cannot change the behavior for AppKit since it requires a big amount of localization changes. If SwiftUI wants to use the UIKit behavior for AppKit, it should be using UIKit application context behavior."
Replies
Boosts
Views
Activity
Sep ’23
Reply to What's the correct writing in RightToLeft languages
Thank you karanmisra for you explanation and interesting references. I'm going to improve my knowledge with unicode reports; anyway I filled a bug report.
Replies
Boosts
Views
Activity
Sep ’23
Reply to Copy & Paste on SwiftUI
You can use pasteDestination(for:action:validator:) https://developer.apple.com/documentation/swiftui/tabview/pastedestination(for:action:validator:)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to stringsdict doesn't works
Thank you Claude31 for your detailed explanation. You let my understand that the error in my simple example (from "Streamline your localised strings" in WWDC21) is the use of %d, which refers to 32bit integer, instead of %ld, which refers to 64bit integer. While I corrected the mistake, I realised that a widely portable stringsdict should have all theoretically possible values, i.e. "Order %d" (int, or 32-bit integer), "Order %ld" (long int) and "Order %lld" (long long int).
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to Where to start with iOS Application
Apple has prepared many tutorial, and more are available on internet (i.e. the Stanford lecture CS193p on YouTube). You could start from "Apple Developer", all WWDC tech talks and more, and Xcode.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’22
Reply to How to put help book in Xcode project?
On a try I found the solution: In the target / Build Phase / Copy Bundle Resources there were the files of the help book instead to the help book itself. I removed them. I removed the whole help book form the Xcode project. I recreated the book help hierarchy directly in the project file system; in the finder, not in Xcode. Finally, in Xcode, I added ("Add files to ...") the help book. This was recognised by Xcode as a bundle and added in the "Copy Bundle Resources" of the target.
Replies
Boosts
Views
Activity
Jun ’22
Reply to Test flight app
The TestFlight invite code is sent by the sw developer from the App Store Connect of its testing sw. You should ask him/her.
Replies
Boosts
Views
Activity
Jun ’22
Reply to “Other” and “System” storage is taking up literally over half of my storage
Other is filled by the system and some app logs. To, temporally, clean up the "other" space, which don'l let me to perform an update on my iPhone 6s-16GB, I do: Backup (I do it on the Mac selecting "Back up all the data on your iPhone to this Mac") Delete everything: General / Transfer or Reset iPhone / Erase All Content and Settings Wait for the restart; the iPhone is as new. Login on appleseed.apple.com, download the iOS profile and restart (this step of course can be omitted) Restore from the backup. At this point the "Other" is empty.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Jun ’22