Is it possible to show a custom image in the status bar in iOS (red oval area below), in response to a specific event in my app? If so, anyone know the API to do this? Thanks.
Create a simple subclass of UIWindow
.
Check this solution https://stackoverflow.com/a/2834029/8187800
Answers
Create a simple subclass of
UIWindow
.Check this solution https://stackoverflow.com/a/2834029/8187800
@ColeX Thanks, I did come across that SO post and will give that approach a try.