Hi, I'll try to implement new widgets in my project. My app is based on objc and swift. I want to use new Link of SwiftUI 2 to receive different URLs from the widget to the AppDelegate of my app. According with the min 12:40 of this video, I want multiple links in medium and large size of my widget: developer.apple.com/videos/play/wwdc2020/10028 Like the project Emoji ranger from session Widgets Code-Along. This is an example of my code: HStack { Link(destination: URL(string: urlschemes://link1)!, label: { Image(landscape) }) Link(destination: URL(string: urlschemes://link2)!, label: { Image(portrait) }) } Where urlschemes is the same of URL Schemes in URL types of my app target info. So I want to receive the selected link on the App Delegate, where I used this method: (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options{ tt ttNSLog(@RECEIVED URL: %@,url); } Thanks in advance Fulvio