我正在尝试找到如何在状态栏上实现自定义消息,例如Evernote“正在下载更改...”消息here。
这是私有API调用吗?有什么建议或指示吗?
答案 0 :(得分:4)
您应该查看MTStatusBarOverlay。
答案 1 :(得分:2)
这看起来像是放在视图顶部的标签,然后在它下面的桌子视图,应该不难做到...
UILabel *label=...
label.text=@"My Text"
//maybe justify here so its c enters
//set the rectangle bounds to what they need to be
//for the example there it would probably be (0,0,320,5) or something like that
//and the tableview w ould be at (0,5,320,455)
答案 2 :(得分:0)
正如@sam指出的那样,MTStatusBarOverlay是一个不错的选择,我目前正在我的应用程序中使用它。 然而我刚发现了一些与原始海报(和我)一直在寻找的完全相符的东西。我喜欢GitHub上的所有人,他们在新应用中看到了一些很酷的UI元素并为大众重新创建......这就是其中一个案例。迷死人! Tweetbot-Like Alert Panels (Blog),存储库为MKInfoPanelDemo at Github。