NotchyAlert
  • November 3, 2023

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, Description 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.

GitHub


View Github

#animation #iphonex #notch #swift
YOU MIGHT ALSO LIKE...
CameraBackground

Features Both front and back camera supported. Flash modes: auto, on, off. Countdown timer. Tap to focus. Pinch to zoom. Usage  

DKCamera

Description A light weight & simple & easy camera for iOS by Swift. It uses CoreMotion framework to detect device orientation, so ...

HorizonSDK-iOS

Horizon SDK is a state of the art real-time video recording / photo shooting iOS library. Some of the features ...

LLSimpleCamera

LLSimpleCamera: A simple customizable camera - video recorder control LLSimpleCamera is a library for creating a customized camera - video ...

RSBarcodes_Swift

RSBarcodes allows you to read 1D and 2D barcodes using the metadata scanning capabilities introduced with iOS 7 and generate ...