Search results for

Swift 6

49,207 results found

Post

Replies

Boosts

Views

Activity

Reply to `onTapGesture` not triggered on `Map` views
FYI: I tested this using the new releases published today, and this issue still exists. Specifically, I observed the issue when: Developing in Xcode beta 6 (17A5305f) running iOS 26 SDK beta 6 (23A5324a) in the simulator Running the sample app on a physical iPhone running iOS 26 beta 7 (23A5326a)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
3w
Debugging updateAppShortcutParameters not adding shortcuts to Shortcuts App
So I'm developing an ios application which should be showing shortcuts, but its not. I'm not sure how to debug why the functionality isnt working. Believe I'm correctly calling AppShortcutsProvider's updateAppShortcutParameters, but I dont see any errors in the console showing me a problem. And in fact, I made a simplified just swift version that works before I tried to integrate it into a more complex project. But now I'm at a loss as to what is going wrong or what debug tools I can use to figure it out. Any help would be appreciated. When building my project I see: 025-08-18 14:07:49.371 appintentsmetadataprocessor[57506:35387547] Starting appintentsmetadataprocessor export 2025-08-18 14:07:49.414 appintentsmetadataprocessor[57506:35387547] Writing Metadata.appintents 2025-08-18 14:07:49.414 appintentsmetadataprocessor[57506:35387547] Metadata root: /Users/jpetersen/Library/Developer/Xcode/DerivedData/Unity-iPhone-dtnhxevagfkzsjdavesziaqrwisr/Build/Products/ReleaseForRunning-iphoneos/UnityFramework
2
0
69
3w
Reply to CarPlay CPGridTemplate – buttons show in a row, and limited to 9 buttons
Hi, your first issue - grid items in a single row - should be resolved on the latest iOS 26 beta. Can you confirm if you are still seeing this on iOS 26 beta 6? For your second issue, the maximum number of items in a grid template is given by the constant CPGridTemplateMaximumItems, which is 8 as of iOS 26. If you need more icons, please file a feedback request with more details about your use case. Thanks!
Topic: UI Frameworks SubTopic: SwiftUI Tags:
3w
Reply to Database App
I've developed databases in MySQL Workbench and ported them to CloudKit, SQLite, and Swift. I've created some workbench modules with Python to do so. They're available if anybody is interested. https://github.com/JoelHz/FromMySQLWorkbenchToCloudkit/blob/main/pythonTranslateMySQLWbToCloudki https://github.com/JoelHz/FromMySQLWorkbenchToSwift/blob/main/pythonTransMySQLToSwift https://github.com/JoelHz/MySQLWorkbenchPluginToSQLite/blob/main/tosqliteformat_grt.py
Topic: Business & Education SubTopic: General Tags:
3w
App Removed From Category Charts
We recently noticed that our app stopped appearing in the top charts for our category. We have not changed the category (Sports) and we've not received any notifications telling us that this was happening. This happened across all 6 regions the app is available in: As you can see the app was very high in the charts prior to be removed on August 5th/6th. We have another app in the same category that gets around 1/4 of the downloads but is showing in the charts. I understand the charts are probably not just a ranking of the total downloads, but there's not anything else I can see that would cause the rank to go from #1 to not showing in the charts at all, especially across multiple countries at once. When I contacted Apple Developer Support (case number 102668852595) I was told: The behavior you observed is expected. App Store charts and search results change regularly and we don’t guarantee app placement. Apps that were ranked before can’t be returned to their previous positions. I will continue commu
0
0
65
3w
Reply to Call Blocking (CallKit) not working on iOS 26 Public Beta
The issue persists in iOS 26 Beta 6 (Build 23A5318c). As come quick follow up on this, yes, the issue is not fixed in beta 6. As some background context, there is a significant testing process before every beta is released, so it's not unusual for a bug to be completely fixed (meaning, all code changes have been submitted and are in that release) but miss the next beta release because that release is already locked and in testing. I also tested on iOS 26 Beta 6 (Build 23A5318f), but blocked calls still pass through. In a similar vein, the minor letter (c vs f) is primarily used to designate differences that are outside the actual code/build, like the distribution mechanism (in this case, the developer seed vs. the public beta). While it's possible there have been exceptions, I would not expect there to be ANY substantial behavioral difference* between those two build. *The obvious exception would be issues caused by differences in the install or configuration pipeline, which is why
Topic: App & System Services SubTopic: General Tags:
3w
WKWebView crash on iOS 26 Beta with -webkit-user-select: none
On iOS 26 Beta, WKWebView consistently crashes when interacting with pages that use -webkit-user-select: none. This issue does not reproduce in Safari, but only when the same content is loaded inside a WKWebView. Steps to Reproduce: Install iOS 26 Beta. Open a WKWebView that loads a webpage with the following style applied globally: -webkit-user-select: none; Perform the following gesture sequence inside the WKWebView: Double tap anywhere in the web content. On the second tap, keep your finger pressed (do not lift). While still holding the second tap, drag your finger across the screen (pan). This sequence reliably produces the crash. Expected Result: No crash. The gesture should either be ignored or handled gracefully. Actual Result: The app crashes 100% of the time with the following exception: #0 0x000000013f1a0874 in __pthread_kill () #1 0x00000001357522ec in pthread_kill () #2 0x00000001801ad950 in abort () #3 0x00000001802fa26c in __abort_message () #4 0x00000001802ea1a4 in demangling_terminate_handler
3
0
982
3w
CarPlay CPGridTemplate – buttons show in a row, and limited to 9 buttons
Hi, I’m working with CPGridTemplate in CarPlay. According to the documentation, it supports up to 9 CPGridButton objects and should display them in a grid (up to 3×3). However, I’ve run into two issues: Row instead of grid When I add 4–6 buttons, they don’t appear in a 2×2 or 2×3 grid. Instead, they are shown in a single horizontal row. Even 9 buttons do not appear in a 3x3 grid. More than 9 buttons My use case requires more than 9 icons, but it looks like CPGridTemplate ignores any additional buttons beyond the first 9. Is there any supported way to display more than 9 buttons in a grid, or is pagination/multiple templates the only option? Thanks in advance!
1
0
58
3w