bestpart
bestpart

Reputation: 11

Replace time in status bar - iOS app

Trying to dynamically adjust the time in the status bar in iOS development; to change to a timer or other text in certain views. Can this be done without dynamically hiding/showing the entire status bar? Just trying to replace the time in varying views while keeping the native status bar.

Upvotes: 0

Views: 97

Answers (1)

Oxcug
Oxcug

Reputation: 6604

No, you cannot access / adjust / edit the status bar. The most customization you can do is: Hide and change status bar color. You'll have to hide the status bar and show your own UIView in place of it.

Upvotes: 1

Related Questions