Recent Comments
Open Radar FB13403132: `DefaultPickerStyle` could be smarter when placed inside a toolbar
Actually, I have a better proposal for the behavior when the horizontal size class is compact. I believe a toolbar title menu is the most idiomatic pattern for a compact horizontal size class.
The principal toolbar item picker could be automatically transformed into a toolbar title menu and the navigation title could be set to the text of the current picker selection.
In other words, if the horizontal size class is compact, automatically do the following (pseudocode):
`.navigationTitle(textOfSelectedItem(in: picker))
.toolbarTitleMenu {
picker
}
`
Open Radar FB13288171: Safari fails to render the page sometimes on Duckduckgo.com
Reproduced on Safari Version 17.1 (18616.2.9.11.9, 18616)
Open Radar FB12086032: Typo in Xcode "An executable path doesn't exist" alert box: detail text includes "executably" (should be "executable")
This appears to have been fixed in Xcode 15. The text now reads "LLDB reports that it doesn't exist. Check that the executable remains on disk."
From the dialog details in Xcode 15.0.1 (15A507):
An executable path doesn't exist. Domain: IDEDebugSessionErrorDomain Code: 3 Failure Reason: The local path is “(null)”.
LLDB reports that it doesn't exist. Check that the executable remains on disk.
Open Radar 37391667: SKProduct.introductoryPrice.priceLocale is always null
Apple
Feb 12, 2019 at 1:20 AM
Thanks for your feedback, we have reviewed it.
Open Radar 37391667: SKProduct.introductoryPrice.priceLocale is always null
Iulian Onofrei
Feb 8, 2019 at 3:35 PM
This issue has been verified by the developer as resolved.
Open Radar 37391667: SKProduct.introductoryPrice.priceLocale is always null
Iulian Onofrei
Feb 8, 2019 at 3:35 PM
- I can't update to iOS 12.2 beta.
- Romania.
- No. I'm using it as a fallback mechanism.
I re-tested it and it seems to be working now.
Open Radar 37391667: SKProduct.introductoryPrice.priceLocale is always null
Apple
Feb 8, 2019 at 2:20 AM
- Can you still reproduce this on 12.2 beta?
- What storefront are you in when you make the fetch IAP request?
- Is the priceLocale on the SKProduct also nil?
Please provide your response or results by updating your bug report. If uploading files, please compress first.
Open Radar 37391667: SKProduct.introductoryPrice.priceLocale is always null
Iulian Onofrei
Oct 7, 2018 at 12:52 AM
Any news on this one? It's pretty important.
Open Radar 37391667: SKProduct.introductoryPrice.priceLocale is always null
Iulian Onofrei
Feb 13, 2018 at 11:35 AM
You specifically only requested logs:
Please collect App Store logs and attach them to your bug report.
I attached the requested sysdiagnose.
sysdiagnose_2018.02.13_11-21-46+0200_iPhone_OS_iPhone_15D60.tar.gz
Open Radar 37391667: SKProduct.introductoryPrice.priceLocale is always null
Apple
Feb 13, 2018 at 5:23 AM
Engineering has requested the following information regarding your bug report:
There doesn’t appear to be a sysdiagnose attached, the file attached looks like a console log dump. Can you please try again to get a sysdiagnose from the device after you have reproduced the issue?
Please reproduce the issue, trigger a sysdiagnose and attach the log file to your bug report. Also, if the bug can be seen visually, please include a screenshot and or a video of the issue.
Important: Note the date and time the issue occurred and include this information in your bug report.
Note: It's important to trigger the sysdiagnose process as soon as possible after the problem occurs, even if the logs can’t be synced off the device until later.
iOS sysdiagnose Instructions: https://developer.apple.com/services-account/download?path=/iOS/iOS_Logs/sysdiagnose_Logging_Instructions.pdf
For a complete list of logging instructions visit: https://developer.apple.com/bug-reporting/profiles-and-logs/
Open Radar 37391667: SKProduct.introductoryPrice.priceLocale is always null
Iulian Onofrei
Feb 12, 2018 at 12:51 PM
The name of the app is "
logs.txt
Open Radar 37391667: SKProduct.introductoryPrice.priceLocale is always null
Apple
Feb 10, 2018 at 5:08 AM
Engineering has requested the following information in order to further investigate this issue:
Please collect App Store logs and attach them to your bug report.
Also, please indicate the name(s) of the affected app(s).
iOS App Store Logging Instructions: https://developer.apple.com/services-account/download?path=/iOS/iOS_Logs/App_Store_Logging_Instructions.pdf
iOS App Store Logging Profile: https://developer.apple.com/services-account/download?path=/iOS/iOS_Logs/itmsdebugging.mobileconfig
For a complete list of logging instructions visit: https://developer.apple.com/bug-reporting/profiles-and-logs/
Open Radar FB12257179: Segmentation fault 11 is thrown when passing function using parameter pack itself as a parameter in Xcode 15 beta 1
This works both in Xcode 15 and Xcode 15.0.1.
Open Radar 26848256: Add export option for shared (app group) containers from a device
2023 and we still need it
Would be very very handy
Open Radar FB13247537: SiriTipView and SiriTipUIView not localized properly in Chinese
Update: localization not working in Russian for iOS16
After further testing, the localization also has bug in Russian for iOS16. For iOS16, the phrase ‘Say’ is localized yet the complete phrase for the shortcut is not localized. Related stackoverflow post: https://stackoverflow.com/questions/75124471/siritipview-doesnt-localise-commands
Open Radar FB13229196: grep has a bug on Sonoma (an assertion failure: advance > 0)
A proof of concept fix
I have a proof of concept fix for the bug (and the analysis thereof) here: https://github.com/apple-oss-distributions/text_cmds/commit/c0780aa3432383e0acde7dc7cf42972716925de6#r129656779
More discussion here: https://developers.apple.com/forums/thread/738862
Open Radar FB13243190: Nested views wrapped in Link cause excessive CPU and memory usage
Edit
Sample code URL: https://github.com/dezinezync/FB13243190
Open Radar FB12078831: Presentation of popover, confirmationDialog, sheet and fullScreenCover are all broken
Still broken on:
Xcode Version 15.1 beta (15C5028h) iOS 17.0 (21A326) SDK + iOS 17.0 (21A328) Simulator (Installed)
I was wondering if the potential fix for future OS update will be a minor of 17 or if I have to wait for 18? Thanks
Open Radar FB13440468: Animation not working inside `NavigationStack`
Oops, this was my mistake. I misunderstood what
Group
did. I should useZStack
/VStack
/HStack
instead ofGroup
so that theanimation
modifier is applied to the container view of the transition instead of to the individual subviews of theGroup
.