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.
我正在制作一个应用程序,并希望有一个链接到 iOS 5 的笔记应用程序的功能。是否有任何代码?例如,我有一个 UIButton,当用户按下它时,它会关闭应用程序并启动 iOS 笔记应用程序。
谢谢
对于 Notes,没有 URL 方案。Apple 在此处为其应用程序的可用方案提供了参考:
http://developer.apple.com/library/safari/#featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html
您还没有提到这是用于 AppStore 还是用于越狱/内部开发。如果是后者,您可以使用SBSLaunchApplicationWithIdentifier()SpringBoardServices 私有框架中的函数:
SBSLaunchApplicationWithIdentifier()
SBSLaunchApplicationWithIdentifier(CFSTR("com.apple.notes"), false);