You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The system requires the Target Membership of the app intent to be set to both the app and the widget extension to open the app
We can open our app with OpenIntent
Set your control’s action to an app intent that conforms to OpenIntent to open your app when someone uses a control. Using OpenIntent allows you to take someone to a specific area of your app when a control performs its action.
The system requires the Target Membership of the app intent to be set to both the app and the widget extension to open the app.
Another way is to use OpenURLIntent from iOS 18 to open universal link
Return an OpenURLIntent as the IntentResult of another app intent’s perform() method or use place the intent on a button that appears on an interactive widget or Live Activity.
Note that you need to use a universal link for your URL representation, you can’t use a custom URL scheme.
There's an issue in iOS 18 where universal link triggered from Control Widget does not open the app correctly. iOS 18.1 fixes this problem. Read iOS 18.1 release notes
Fixed: Apps that support universal links might not open normally and instead open the browser when the user navigates to a URL provided by the OpenURLIntent or URLRepresentableIntent APIs. (133764689) (FB14784347)
func perform() async throws -> some IntentResult & OpensIntent { let url = URL(string: "myapp://book")! return .result(opensIntent: OpenURLIntent(url)) } 这种方式iOS18不能跳转APP
把target membership的主工程和extension都加上应该就可以了“The system requires the Target Membership of the app intent to be set to both the app and the widget extension to open the app.”
In iOS 18, we can make Control Widget in Widget extension
From Creating controls to perform actions across the system
We can open our app with
OpenIntent
The system requires the Target Membership of the app intent to be set to both the app and the widget extension to open the app.
Another way is to use OpenURLIntent from iOS 18 to open universal link
Note that you need to use a universal link for your URL representation, you can’t use a custom URL scheme.
There's an issue in iOS 18 where universal link triggered from Control Widget does not open the app correctly. iOS 18.1 fixes this problem. Read iOS 18.1 release notes
Read more
The text was updated successfully, but these errors were encountered: