天天看點

iOS如何把所有界面的狀态欄的字型顔色都設定為白色

第一步:在info.plist中添加一個字段:view controller -base status bar 設定為no

第二步:在一個所有界面都繼承的父類裡添加:

  if (ios7_or_later) { // 判斷是否是ios7

    [[uiapplication

sharedapplication] setstatusbarstyle:uistatusbarstylelightcontent

animated:no];

  }

繼續閱讀