Post

Replies

Boosts

Views

Activity

Reply to Apple sent payment to inactive bank details
Has anyone experienced a similar situation? Yes, there have been other similar posts. Search the forum. Here's an example: https://developer.apple.com/forums/thread/734036 when Apple is likely to refund the money to my new account details You should probably assume that the money is lost. I don't recall any of the previous threads like this reporting a happy outcome.
Nov ’23
Reply to NSDateFormatter ignores user's preferred date format
Note that this code: NSDateFormatter* f = [[NSDateFormatter alloc] init]; f.locale = [NSLocale currentLocale]; f.dateStyle = NSDateFormatterShortStyle; f.timeStyle = NSDateFormatterShortStyle; NSString* fmt = f.dateFormat; Does return a format string that reflects General -> Language & Region -> Date Format: Region=UK, Date Format=2023-08-19, fmt="y-MM-dd, h:mm a" Region=UK, Date Format=8/19/23, fmt="dd/MM/yyyy, h:mm:ss a"
Topic: App & System Services SubTopic: General Tags:
Nov ’23
Reply to NSDateFormatter ignores user's preferred date format
See under "Return Value" and "Discussion" for an example of this behavior. Could you be specific about what you see in that documentation? As I read it, it says that the components in the returned format string should be arranged according to the locale. It does not relate that to the various Settings app settings. It seems to me that: The Settings app language, region and 24hr vs. am/pm settings are reflected in public properties of NSLocale. The Settings app date format setting is reflected in a private property of NSLocale, which I can see in the debugger. Setting NSDateFormatter’s locale, dateStyle and timeStyle and reading dateFormat returns a template based on (1) and (2). dateFormatFromTemplate returns a template based only on (1). This seems wrong to me.
Topic: App & System Services SubTopic: General Tags:
Nov ’23
Reply to in-app purchases on device switch
how we can get the latest receipt in device1 You can't. Users must not change their Apple ID. I guess that a user has contacted you to ask for help. Tell the user that they should not have changed their Apple ID, and that you cannot help further. Also, consider the possibility that this is a scam.
Topic: App & System Services SubTopic: StoreKit Tags:
Nov ’23
Reply to cronjob fails but script works
There is some magic that you have to do to grant permission to cron to access your home directory. I forget the details, but a web search should find it.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Could be a good idea make an App Store's app open source?
Don't write your own licence.
Replies
Boosts
Views
Activity
Oct ’23
Reply to NoobScript - a JavaScript/PHP-like programming language i'm developing for macOS development
Broken link?
Topic: Programming Languages SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to UIDocumentInteractionController opens documents in ReadOnly mode even with LSSupportsOpeningDocumentsInPlace enabled
Do you have a different version of the Word app? I think the important issue is whether the Word app sets LSSupportsOpeningDocumentsInPlace. (Is there a away to inspect other apps’ info.plists?)
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Apple sent payment to inactive bank details
Has anyone experienced a similar situation? Yes, there have been other similar posts. Search the forum. Here's an example: https://developer.apple.com/forums/thread/734036 when Apple is likely to refund the money to my new account details You should probably assume that the money is lost. I don't recall any of the previous threads like this reporting a happy outcome.
Replies
Boosts
Views
Activity
Nov ’23
Reply to C++20 Modules
That page doesn't mention anything that is unsupported, as far as I can see.
Replies
Boosts
Views
Activity
Nov ’23
Reply to App Review Employees are not experienced enough.
It would be much easier for you to change your protocol so that the app talks to the right server automatically!
Replies
Boosts
Views
Activity
Nov ’23
Reply to Guideline 5.1.2 - Legal - Privacy - Data Collection and Storage
I asked user accpect with Terms of Use & Privacy Policy Have all of their contacts also agreed to your terms? No.
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’23
Reply to Risk in running a promotion to capture more app ratings/reviews?
Read your developer agreement carefully. How do you propose to determine who has submitted a rating?
Replies
Boosts
Views
Activity
Nov ’23
Reply to Data transfer using NFC
Can I use my iPhone to emulate an NFC Tag to transfer data to another iPhone or Android device? No.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’23
Reply to NSDateFormatter ignores user's preferred date format
Note that this code: NSDateFormatter* f = [[NSDateFormatter alloc] init]; f.locale = [NSLocale currentLocale]; f.dateStyle = NSDateFormatterShortStyle; f.timeStyle = NSDateFormatterShortStyle; NSString* fmt = f.dateFormat; Does return a format string that reflects General -> Language & Region -> Date Format: Region=UK, Date Format=2023-08-19, fmt="y-MM-dd, h:mm a" Region=UK, Date Format=8/19/23, fmt="dd/MM/yyyy, h:mm:ss a"
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’23
Reply to NSDateFormatter ignores user's preferred date format
See under "Return Value" and "Discussion" for an example of this behavior. Could you be specific about what you see in that documentation? As I read it, it says that the components in the returned format string should be arranged according to the locale. It does not relate that to the various Settings app settings. It seems to me that: The Settings app language, region and 24hr vs. am/pm settings are reflected in public properties of NSLocale. The Settings app date format setting is reflected in a private property of NSLocale, which I can see in the debugger. Setting NSDateFormatter’s locale, dateStyle and timeStyle and reading dateFormat returns a template based on (1) and (2). dateFormatFromTemplate returns a template based only on (1). This seems wrong to me.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’23
Reply to Does apple take 30% for digital products in the app if i use 3rd party payment gateway
You’re not allowed to use a 3rd-party payment processor. Have you read your developer agreement?
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Nov ’23
Reply to NSDateFormatter ignores user's preferred date format
FB13345817
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’23
Reply to in-app purchases on device switch
how we can get the latest receipt in device1 You can't. Users must not change their Apple ID. I guess that a user has contacted you to ask for help. Tell the user that they should not have changed their Apple ID, and that you cannot help further. Also, consider the possibility that this is a scam.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Nov ’23