Objective-C nsbundle

发布于 2024-12-04 19:36:44 字数 291 浏览 0 评论 0原文

我正在使用 iOS 4.3 SDK 开发一个 iOS 应用程序,但我希望该应用程序在每次关闭应用程序时动态更改 iPad 屏幕上的图标名称。

据我所知,我可以使用 NSBundle 来做到这一点,但我不知道如何实现这一点。有人可以建议我吗? 有人可以发布示例代码吗?

更多详细信息:我有一个表单,可以在其中输入数据并将其插入到 sqllite 数据库中。我想每次将数据保存到 sqllite db 时显示如下所示的图标名称。

如果我保存了 2 条记录,“我的申请 2 条记录已存在”

I am developing an iOS app using iOS 4.3 SDK, but I want the app to change the icon name on the iPad screen dynamically every time I closed the app.

According to my knowledge, I can do this using NSBundle but I don't know how can I acheive this. Can anybody suggest me ?
can someone post the sample piece of code ?

More Details: I have a form where I input data and insert into sqllite db. I want to display the icon name like below every time I save data into sqllite db.

"My Application 2 records exists" if I saved 2 records.

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

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

发布评论

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

评论(1

所谓喜欢 2024-12-11 19:36:44

您无法更改您的应用程序显示名称!它是从您的(代码签名!).plist(或您的本地化 Info-Plist.strings 之一)中读取的。

如果您想告知用户记录数量,您应该考虑使用徽章编号:[[UIApplication sharedApplication] setApplicationIconBadgeNumber:2]

You cannot change your application display name! It is read from your (code-signed!) .plist (or one of your localized Info-Plist.strings).

If you want to inform the user of the nuber of records you should consider using badge numbers: [[UIApplication sharedApplication] setApplicationIconBadgeNumber:2]

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