第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

帶Phonegap的iOS 7狀態(tài)欄

帶Phonegap的iOS 7狀態(tài)欄

iOS
MYYA 2019-12-09 15:59:44
在iOS 7中,Phonegap應(yīng)用程序?qū)⒊霈F(xiàn)在狀態(tài)欄下方。這可能導(dǎo)致難以單擊位于屏幕頂部的按鈕/菜單。是否有人知道在Phonegap應(yīng)用程序中解決iOS 7上此狀態(tài)欄問(wèn)題的方法?我試圖用CSS抵消整個(gè)網(wǎng)頁(yè),但似乎無(wú)法正常工作。有沒有辦法喜歡偏移整個(gè)UIWebView或只是使?fàn)顟B(tài)欄的行為像在iOS6中一樣?
查看完整描述

3 回答

?
開滿天機(jī)

TA貢獻(xiàn)1786條經(jīng)驗(yàn) 獲得超13個(gè)贊

我在另一個(gè)線程上找到了答案,但是如果有人懷疑,我會(huì)回答這個(gè)問(wèn)題。


只需將viewWillAppearin 替換為MainViewController.m:


- (void)viewWillAppear:(BOOL)animated {

    // View defaults to full size.  If you want to customize the view's size, or its subviews (e.g. webView),

    // you can do so here.

    // Lower screen 20px on ios 7

    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {

        CGRect viewBounds = [self.webView bounds];

        viewBounds.origin.y = 20;

        viewBounds.size.height = viewBounds.size.height - 20;

        self.webView.frame = viewBounds;

    }

    [super viewWillAppear:animated];

}


查看完整回答
反對(duì) 回復(fù) 2019-12-09
?
狐的傳說(shuō)

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超3個(gè)贊

除了路德維?!た死锼雇懈ド↙udwig Kristoffersson)的尺寸調(diào)整功能外,我建議更改狀態(tài)欄顏色:


- (void)viewDidLoad

{

    [super viewDidLoad];

    // Do any additional setup after loading the view from its nib.


    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {

        CGRect viewBounds = [self.webView bounds];

        viewBounds.origin.y = 20;

        viewBounds.size.height = viewBounds.size.height - 20;

        self.webView.frame = viewBounds;

    }

    self.view.backgroundColor = [UIColor blackColor];

}

-(UIStatusBarStyle)preferredStatusBarStyle{

    return UIStatusBarStyleLightContent;

}


查看完整回答
反對(duì) 回復(fù) 2019-12-09
  • 3 回答
  • 0 關(guān)注
  • 588 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)