UINotifications
Present custom in-app notifications easily in Swift.
Features
- [x] Present your own custom view easily as an in-app Notification
- [x] Create custom presentation styles
- [x] Update content during presentation
Example
To run the example project, clone the repo, and open UINotifications-Example.xcodeproj
from the Example directory.
Success styling | Failure styling |
---|---|
![]() |
![]() |
Requirements
- Swift 3.0, 3.1, 3.2
- iOS 8.0+
- Xcode 8.1, 8.2, 8.3
Usage
Making a Notification
Create a custom style
And use it:
Use a custom dismiss trigger
Create a custom UINotificationView
- Create a custom view and inherit from
UINotificationView
- Set your custom view on the
UINotificationCenter
:
Create a custom presenter
Create a custom presenter to manage presentation and dismiss animations.
- Create a custom class which inherits from
UINotificationPresenter
. - Set your custom presenter on the
UINotificationCenter
:
Checkout UINotificationEaseOutEaseInPresenter
for an example.
Allow duplicate requests
By default, notifications which are already queued will not be queued again. This is to prevent an endless loop of notifications being presented if they occur quickly after each other.
To disable this setting:
Communication
- If you found a bug, open an issue.
- If you have a feature request, open an issue.
- If you want to contribute, submit a pull request.
Installation
CocoaPods
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
To integrate UINotifications into your Xcode project using CocoaPods, specify it in your Podfile
:
Then, run the following command:
Carthage
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
To integrate UINotifications into your Xcode project using Carthage, specify it in your Cartfile
:
Run carthage update
to build the framework and drag the built UINotifications.framework
into your Xcode project.
Manually
If you prefer not to use any of the aforementioned dependency managers, you can integrate UINotifications into your project manually.
Embedded Framework
-
Open up Terminal,
cd
into your top-level project directory, and run the following command "if" your project is not initialized as a git repository: -
Add UINotifications as a git submodule by running the following command:
-
Open the new
UINotifications
folder, and drag theUINotifications.xcodeproj
into the Project Navigator of your application's Xcode project.It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter.
-
Select the
UINotifications.xcodeproj
in the Project Navigator and verify the deployment target matches that of your application target. -
Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.
-
In the tab bar at the top of that window, open the "General" panel.
-
Click on the
+
button under the "Embedded Binaries" section. -
Select
UINotifications.framework
. -
And that's it!
The
UINotifications.framework
is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device.