Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
[编辑:哇,这仍然有效?嗯。]
抱歉,这是在另一个问题中提出并回答的,我不确定这是怎么发生的?对不起,这是我的错误
NSWorkspace 负责那种东西。
[[NSWorkspace sharedWorkspace] openFile:@"http://www.mylink.com"];
有很多方法可以做到这一点 - 但最简单的是使用openshell 命令:
open
open http://www.google.com
如果您想从 C、C++ 或 Objective-C[++] 执行此操作:
system("open http://www.google.com");