Objective-C nsbundle
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法更改您的应用程序显示名称!它是从您的(代码签名!).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]