如何从 Objective-C 中的哈希表启动应用程序?

发布于 2024-08-15 04:40:47 字数 246 浏览 6 评论 0原文

嘿,我可以在 Objective-C 中创建哈希表,它以 XML 格式存储数据...... 但是如何启动我在 XML 文件的字符串标记中指定的应用程序...我的应用程序名称采用捆绑包格式... 例如:

<key>HelloWordl<key>
<string>HelloWorld.bundle<string>

如何启动这个HelloWorld.bundle?

hey i'm able to create hash table in Objective-C which stores data in XML format...
but how to launch the application which i've specified in the string tag in XML file...My application name is in the bundle format...
For Example:

<key>HelloWordl<key>
<string>HelloWorld.bundle<string>

How to launch this HelloWorld.bundle??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忘东忘西忘不掉你 2024-08-22 04:40:47

您可以使用 NSBundle 来加载包。

您可以通过以下接口来完成此操作:
+ (NSBundle *)bundleWithPath:(NSString *)fullPath
- (BOOL)负载

You can use NSBundle to load the the bundle.

You can do this by the following interfaces:
+ (NSBundle *)bundleWithPath:(NSString *)fullPath
- (BOOL)load

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文