启动屏幕未在热点模式下填充屏幕设备

时间:2015-07-07 07:45:26

标签: ios objective-c iphone personal-hotspot

如果我在我的iPhone上激活热点,启动屏幕会向上移动,在屏幕的底部我有一个填充空间,我可以看到手机的壁纸。我在导航控制器上遇到了同样的问题,但我修复了它。在这里,我不知道我能做什么。 enter image description here

如果有人可以帮助我..请

1 个答案:

答案 0 :(得分:2)

我找到了这个问题的解决方案。在AppDelegate.m中我添加了这个方法:

void get_dimensions(int& length, int& width)
{
    cout << "Enter the length: ";
    cin >> length;
    cout << "Enter the width: ";
    cin >> width;
    cout << "\n";
}

启动屏幕看起来很完美。