Post

Replies

Boosts

Views

Activity

Reply to NSTextField in toolbar on Big Sur
I managed to add a resizeable NSTextField to NSToolbar with the following code: let item = NSToolbarItem(itemIdentifier: .titleItem) /* Or any other identifier */ let field = NSTextField() /* Do not use one of the new initialisers! */ field.isBordered = false /* This is essential */ field.lineBreakMode = .byTruncatingTail item.view = field
Sep ’24
Reply to Launch screen not rendering correctly on iPad
A super weird workaround for this problem is to add an UIButton (I selected the "Filled Button") to the LaunchScreen.storyboard, and then to add horizontal and vertical alignment constraints to this button. After this I enabled the Hidden property of the button. Since then the launch screen is being resized as expected on my new iPad Pro.
Dec ’22
Reply to MAS receipt is not downloaded for Sandbox users
I have currently the same problem with all my Mac apps, on all my Macs, on macOS versions from 10.14 to 12.1. How is it possible that this isn't solved yet? Or are a lot of Mac developers simply skipping the receipt validation? The workaround to use SKReceiptRefreshRequest only seems to work on macOS 11 and 12, with some drawbacks. On 10.14 and 10.15 I get the same error as using "exit 173". The only thing we can and must do is file a Feedback report. I have read that contacting DTS about this will only result in a template answer, with a request to file a Feedback report.
Jan ’22
Reply to How to delete container in CloudKit Dashboard?
I think that Apple wants to prevent at any cost that a production container gets deleted due to a software bug. And if I must choose between being able to delete containers (not deployed in production, that must be the main criterium), or a very small chance that I loose one of my production containers due to a software bug (by Apple or any other party), I would always choose to not being able to delete containers, and continue living with all those unused (incorrectly named, test or temporary) containers.
Aug ’21