我有一个功能可以检查 chrome 是否可以打开一个 url。在 iOS 中我有:
// is chrome installed??
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString"googlechrome://"]])
{
...
}
但现在在我的 Mac OS 应用程序中,我不能使用它,因为 NSWorkspace 是未声明的函数。
if ([[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString"googlechrome://"]])
{
...
}
那么,canOpenURL怎么用呢?
Best Answer-推荐答案 strong>
使用 NSWorkspace 的 fullPathForApplication 获取应用程序的捆绑路径。如果该方法返回 nil ,则表示未安装该应用程序。
相关问题:how to detect if user has an app in Cocoa
关于ios - 如何在 Mac OS 应用程序中使用 canOpenURL?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/40821852/
|