Highly customizable & feature rich notifications displayed below the status bar. Customizable colors, fonts & animations. Supports notch and no-notch devices, landscape & portrait layouts and Drag-to-Dismiss. Can display a subtitle, an activity indicator, a progress bar & custom views out of the box. iOS 13+. Swift ready!
Please open a Github issue, if you think anything is missing or wrong.
Here’s some examples of the possibilities (the pill style is the default):
Full-Width styles in action (the pill styles support the same features / animations):
NotificationPresenter is a singleton. You don’t need to initialize it anywhere.
All examples are Swift code, but the class can be used in Objective-C as well.
Also checkout the example project, which has many examples and includes a convenient style editor.
Here’s some usage examples:
Showing a text notification
It’s as simple as this:
NotificationPresenter.shared().present(text: "Hello World")
// with completion
NotificationPresenter.shared().present(text: "Hello World") { presenter in
// ...
}
Dismissing a notification
NotificationPresenter.shared().dismiss(animated: true)
// with completion
NotificationPresenter.shared().dismiss(afterDelay: 0.5) { presenter in
// ...
}
// update default style
NotificationPresenter.shared().updateDefaultStyle { style in
style.backgroundStyle.backgroundColor = .red
style.textStyle.textColor = .white
style.textStyle.font = UIFont.preferredFont(forTextStyle: .title3)
// and many more options
return style
}
// set a named custom style
NotificationPresenter.shared().addStyle(styleName: "xxx") { style in
// ...
return style
}
Style Editor
Or checkout the example project, which contains a full style editor. You can tweak all customization options within the app, see the changes live and even export the configuration code for the newly created style to easily use it in your app.
Background Styles
There’s two supported background styles:
/// The background is a floating pill around the text. The pill size and appearance can be customized. This is the default.
StatusBarNotificationBackgroundType.pill
/// The background covers the full display width and the full status bar + navbar height.
StatusBarNotificationBackgroundType.fullWidth
Animation Types
The supported animation types:
/// Slide in from the top of the screen and slide back out to the top. This is the default.
StatusBarNotificationAnimationType.move,
/// Fade-in and fade-out in place. No movement animation.
StatusBarNotificationAnimationType.fade,
/// Fall down from the top and bounce a little bit, before coming to a rest. Slides back out to the top.
StatusBarNotificationAnimationType.bounce,
Troubleshooting
No notifications are showing up
If your app uses a UIWindowScene the NotificationPresenter needs to know about it before you present any notifications.
The library attempts to find the correct WindowScene automatically, but that might fail. If it fails no notifications will show up at all. You can explicitly set the window scene to resolve this:
JDStatusBarNotification
Highly customizable & feature rich notifications displayed below the status bar. Customizable colors, fonts & animations. Supports notch and no-notch devices, landscape & portrait layouts and Drag-to-Dismiss. Can display a subtitle, an activity indicator, a progress bar & custom views out of the box. iOS 13+. Swift ready!
Please open a Github issue, if you think anything is missing or wrong.
Here’s some examples of the possibilities (the pill style is the default):
Full-Width styles in action (the pill styles support the same features / animations):
Installation
git@github.com:calimarkus/JDStatusBarNotification.git
pod 'JDStatusBarNotification'
github "calimarkus/JDStatusBarNotification"
JDStatusBarNotification/JDStatusBarNotification
folder into your project.Documentation
Find the class documentation hosted on Github.
Changelog
See CHANGELOG.md
Getting started
NotificationPresenter
is a singleton. You don’t need to initialize it anywhere. All examples are Swift code, but the class can be used in Objective-C as well. Also checkout the example project, which has many examples and includes a convenient style editor.Here’s some usage examples:
Showing a text notification
It’s as simple as this:
Dismissing a notification
Showing activity
Showing a custom left view
Showing progress
Using other included styles
There’s a few included styles you can easily use with the following API:
Using a custom UIView
If you want full control over the notification content and styling, you can use your own custom UIView.
Customization
You have the option to easily create & use fully customized styles.
The closures of
updateDefaultStyle()
andaddStyle(styleName: String)
provide a copy of the default style, which can then be modified. See theJDStatusBarStyle
class documentation for all options.Style Editor
Or checkout the example project, which contains a full style editor. You can tweak all customization options within the app, see the changes live and even export the configuration code for the newly created style to easily use it in your app.
Background Styles
There’s two supported background styles:
Animation Types
The supported animation types:
Troubleshooting
No notifications are showing up
If your app uses a
UIWindowScene
theNotificationPresenter
needs to know about it before you present any notifications. The library attempts to find the correct WindowScene automatically, but that might fail. If it fails no notifications will show up at all. You can explicitly set the window scene to resolve this:Twitter
I’m @calimarkus on Twitter. Feel free to post a tweet, if you like JDStatusBarNotification.
Credits
Originally based on
KGStatusBar
by Kevin Gibbon