Post

Replies

Boosts

Views

Activity

Detect click in CarPlay with UIKit?
I'm developing a CarPlay navigation app, and some of my UI is built with UIKit. I can display the UI well and it works, but I can't detect clicks or user interaction. CPButtons work, but those aren't customizable to my knowledge. How can I detect clicks or user interaction with my UIKit elements in CarPlay? Or, create custom views from the CP elements?
1
0
912
Jan ’21
Error creating LLDB target at path - Xcode 12
I'm using Xcode 12 beta 3. When running my Apple Watch's target on WatchOS 7, I get this error: Warning: Error creating LLDB target at path '/Users/evan/Library/Developer/Xcode/DerivedData/audigo-cneguthkmmoulfgcprsazbryrlrl/Build/Products/Debug-watchsimulator/AudigoWatchApplication.app'- using an empty LLDB target which can cause slow memory reads from remote devices. I know this error use to be when running 32 bit frameworks on 64 bit devices, but I'm not doing that. Is this a bug? Or is there a setting I don't know of that needs to be updated?
20
2
23k
Jul ’20
Update Hosting Controller of Watch App using SwiftUI and watch connectivity
I'm using SwiftUI to make my an Apple Watch Companion app for my iOS application. I call my view using , override var body: ContentView { 		 return ContentView(data: appData) } When I receive message data from watch connectivity how can I call the ContentView to reload the view? (Content view is my swiftUI view and appData is an array of data passed to it)
0
0
541
Jul ’20
Error running app with widgetKit on iOS 13
My app has a widgetKit extension, and works perfectly on iOS 14. When I run the app on an iOS 13 device I get this error: dyld: Library not loaded: /System/Library/Frameworks/WidgetKit.framework/WidgetKit   Referenced from: /private/var/containers/Bundle/Application I think it means I’m calling widgetKit but it doesn’t know what it is. How can I avoid this error or fix it?
7
0
2.7k
Jul ’20
Link widget to specific UITableViewCell
I followed along the Widget Code Along part two in my own app. In the tutorial they discussed linking the data on the widget to that in the tableview. When you clicked on the widget it would take you to the linked tableviewcell with swiftUI. In my app, my widget is swiftUI, but my tableview inside my main app is UIKit and Storyboards. How can create the URL link in UIKit like the one in swiftUI?
4
0
1.2k
Jun ’20