2

If we have a host app, then we can open Safari with openURL method:

[self.extensionContext openURL:[NSURL URLWithString:@"http://google.com"] completionHandler:nil];

But what if we have standalone iMessage app? Is there any trick to open another app from it?

Kirill Pyulzyu
  • 381
  • 2
  • 11

1 Answers1

1

From the Apple Developer forums, Apple only allows you to open URLs in your parent app (in this case, iMessage for standalone iMessage apps).

https://forums.developer.apple.com/thread/54410

I believe to ask for more functionality, file an Apple bug report (feature request).

A. Min
  • 26
  • 3