Popularity
1.9
Growing
Activity
0.0
Stable
71
4
4

Programming language: Swift
License: MIT License
Tags: UI     Alert & Action Sheet    
Latest version: v1.0

NotchyAlert alternatives and similar libraries

Based on the "Alert & Action Sheet" category.
Alternatively, view NotchyAlert alternatives based on common mentions on social networks and blogs.

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

Add another 'Alert & Action Sheet' Library

README

NotchyAlert

Cocoapods compatible Carthage compatible Platform License Build Status

[](Screenshots/banner.png)

Prerequisites

  • Xcode 9.x
  • Swift 4.x
  • iPhone X Simulator/Device

Demo

Installation

Cocoapods

To install NotchyAlert using Cocoapods, add the following line to your Podfile:

pod 'NotchyAlert'

Carthage

To install NotchyAlert using Carthage, add the following line to your Cartfile:

github "TheAbstractDev/NotchyAlert"

Usage

First, you'll need to import NotchyAlert

import NotchyAlert

Title Only

let notchy = Notchy(title: "Oops!", description: nil, image: nil)
notchy.presentNotchy(in: self.view, duration: 3)

Title and Description

let notchy = Notchy(title: "Oops!", description: "No Internet Connection.", image: nil)
notchy.presentNotchy(in: self.view, duration: 3)

Title and Image

let notchy = Notchy(title: "Oops!", description: nil, image: "<YOUR IMAGE>")
notchy.presentNotchy(in: self.view, duration: 3)

Title, Decription and Image

let notchy = Notchy(title: "Oops!", description: "No Internet Connection.", image: "<YOUR IMAGE>")
notchy.presentNotchy(in: self.view, duration: 3)

Bounce Effect

By default, the bounce effect is true. You can choose to disable the bounce effect by setting false on the call of presentNotchy

notchy.presentNotchy(in: self.view, duration: 3, bounce: false)

Example

You can test it by downloading and run the Example project.

License

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


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