iOS - Can I make the status bar look like the in-call

224 Views Asked by At

I need the status bar to look like there is a call and execute certain piece of code when the user taps the status bar. Is it possible. I can't find any API allowing me to play with the status bar

1

There are 1 best solutions below

2
On

Yes,

You can use this to show messages in the status bar (or "like they are in the status bar"):

https://github.com/petersantino/TWStatus

And you can put a gestureRecognizer on top of it or a button in order to catch the tap of the user ( enabling it only when the desired event is happening).

Hope it helps.