我正在使用位置管理器,requestWhenInUseAuthorization。当我的应用程序进入后台时,会出现蓝色条,显示"我的应用名称正在使用您的位置"。
我尝试了一些私有UIApplication私有API
let mutableString = NSMutableString(string: "test")
let number = NSNumber(integer: i)
let bool = NSNumber(bool: false)
UIApplication.sharedApplication().performSelector(Selector("setDoubleHeightStatusText:forStyle:"), withObject: mutableString, withObject: number)
UIApplication.sharedApplication().performSelector(Selector("addStatusBarStyleOverrides:"), withObject: number)
UIApplication.sharedApplication().performSelector(Selector("setGlowAnimationEnabled:forStyle:"), withObject: bool, withObject: number)
但我无法改变文字!我的代码有什么问题