是否可以在我的应用程序的默认设置应用程序中显示动态数据

发布于 2025-01-01 12:02:57 字数 384 浏览 0 评论 0原文

我正在使用设置捆绑包在 iPhone 的默认设置应用程序中插入一些项目。

现在,当从 iPhone 的设置应用程序中选择我的应用程序名称时,我们可以列出我的应用程序数据库中的数据吗?

在检查某些网址时,我们似乎无法在设置应用程序中显示动态数据。

我想做的是,

设置 ->我的应用程序名称 ->当点击 MyAppName 时,

我想从我的数据库中获取数据并将其显示在 uitableview 中,如下所示。还可以通过点击 + (添加按钮)从那里添加新条目。

水果 蔬菜 冰淇淋 巧克力 手机

就是这样,当点击每个条目时,会将其转到下一组列表。他们还可以在那里添加新条目

这一切都可以完成吗?

请告诉我

I am using settings bundle to insert some items in iPhone's default settings app.

now when selecting my app name  from iPhone's settings app , can we able to list data from Database of my application.

When checking some URLs, it seems that we cant show dynamic data in the settings app.

What i am trying to do is,

Settings -> MyAppName -> When tapped MyAppName

I want to fetch data from my DB and display it like below in the uitableview.also to add new entry by tapping + ( add button ) from there.

Fruits
Vegtables
Icecream
Chocolates
Mobiles

like that and when tapping on the each entry take it to the next set of list. and also there they can add new entry

Can this all be done?

Please let me know

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

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

发布评论

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

评论(2

三岁铭 2025-01-08 12:02:57

不,抱歉,这是不可能的。您必须在应用程序中进行设置,并出于相同目的包含您自己的视图控制器。

No, sorry, it can't be done. You'll have to have the settings inside your app and include your own view controller for the same purpose.

空宴 2025-01-08 12:02:57

不,您不能执行此操作,因为作为应用程序,您只能写入应用程序的文档目录。因此,要在设置中显示某些内容,您必须在主包中创建 Settings.bundle。您可以从主捆绑包中读取 Settings.bundle 文件,但不能写入它。

No you can not do this, because as a app you can write only to the documents directory of your app. So to have something displayed in the settings you have to create Settings.bundle in your main bundle. You can read from your main bundle the Settings.bundle files but you can not write to it.

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