Popularity
1.0
Stable
Activity
0.0
Stable
19
5
3

Code Quality Rank: L5
Programming language: Swift
License: MIT License
Tags: UI     Alerts    
Latest version: v0.2.0

OEANotification alternatives and similar libraries

Based on the "Alerts" category.
Alternatively, view OEANotification alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of OEANotification or a related project?

Add another 'Alerts' Library

README

OEANotification

Version License Platform Swift 2.1

OEANotification is an iOS library which provides to create notifications and customize them easily. You can create notifications with just one line of code ,if you are bored UIAlertView.

[](ScreenRecord/OEANotification.gif)

Usage


class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        OEANotification.setDefaultViewController(self)
        // to create simple success notification
        OEANotification.notify("Test Title", subTitle: "Test SubTitle", image: nil, type: NotificationType.Success, isDismissable: true)
        // to create info notification
        //OEANotification.notify("Test Title", subTitle: "Test SubTitle", image: nil, type: NotificationType.Info, isDismissable: true)
        // to create warning notification
        //OEANotification.notify("Test Title", subTitle: "Test SubTitle", image: nil, type: NotificationType.Warning, isDismissable: true)
        // to create completion handler based notification
        OEANotification.notify("Test Title", subTitle: "Test Subtitle", image: nil, type: .Success, isDismissable: true, completion: { () -> Void in
                print("completed")
            }, touchHandler: nil)
        // to create touchHandler based notificaiton
        OEANotification.notify("Test Title", subTitle: "Test Subtitle", image: nil, type: .Success, isDismissable: true, completion: { () -> Void in
                print("completed")
            }) { () -> Void in
                print("touched event")
    }
}

Installation

OEANotification is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "OEANotification"

Roadmap

  • [X] Default Notification Types (Warning, Info, Success)
  • [ ] Custom Notification Type
  • [X] Device rotation handling
  • [X] Completion Handler based notification
  • [X] View Tapped Handler based notification
  • [ ] Creating big example of OEANotification
  • [ ] UI Tests
  • [ ] Setup Travis

Author

Ömer Aslan, [email protected]

License

OEANotification is available under the MIT license. See the LICENSE file for more info.


*Note that all licence references and agreements mentioned in the OEANotification README section above are relevant to that project's source code only.