Open an application from another (iOS)

后端 未结 1 1894
故里飘歌
故里飘歌 2021-01-20 04:55

I read that there is nothing like NSWorkspace for iOS

Equivalent of NSWorkspace for iOS

Unfortunately, I wanted a button in my app that can run some others a

1条回答
  •  星月不相逢
    2021-01-20 05:26

    Your first problem is that you can't run applications in the background in the same way that you can on the Mac.

    But, assuming that just launching an app is enough, the answer is: it depends. The other app would need a URL scheme defined. Not all do, unfortunately. Then you just call [UIApplication openURL:].

    0 讨论(0)
提交回复
热议问题