在应用程序启动笔记应用程序

时间:2012-09-09 09:14:57

标签: iphone ios ipad uibutton

我正在创建一个应用程序,并希望有一个链接到iOS 5的笔记应用程序的功能。是否有任何代码?例如我有一个UIButton,当用户按下它时,它会关闭应用程序并启动iOS笔记应用程序。

由于

2 个答案:

答案 0 :(得分:5)

对于Notes,没有URL方案。 Apple提供了有关其应用程序可用方案的参考:

http://developer.apple.com/library/safari/#featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html

答案 1 :(得分:4)

您还没有提到这是针对AppStore还是针对越狱/内部开发。如果是后者,您可以使用SpringBoardServices私有框架中的SBSLaunchApplicationWithIdentifier()函数:

SBSLaunchApplicationWithIdentifier(CFSTR("com.apple.notes"), false);