ShareKit短信没有对齐"新消息"带状态栏的栏

时间:2012-05-13 21:41:10

标签: ios sms statusbar sharekit

我有一个隐藏状态栏的应用。当我触发SHKTextMessage SMS控制器时,我发现,与SHKMail对象不同,它会在弹出消息显示时在屏幕上显示状态栏。这没关系,除了我看到以下屏幕:

The Red is the view *behind* the message view that is showing because apparently the "New Message" bar is placed as if there were no status bar.

当我点击白色加号按钮选择发送目标然后立即取消它时,它会自行修复,如下所示:

fixed

我能做些什么来完全抑制状态栏(比如SHKMail似乎),或者让新消息栏不对齐错误?

1 个答案:

答案 0 :(得分:1)

这并没有真正回答为什么问题首先发生,但我发现我可以至少通过隐藏状态栏来解决这个问题,如下所示:在共享工具包文本消息控制器之后:

[SHKTextMessage shareItem:item];

// fix strange status bar bug where it shows up in sms and offsets "New Message" bar weird
[[UIApplication sharedApplication] setStatusBarHidden:YES];