Skip to content

nhdang103/HDNotificationView

Repository files navigation

iOS Version Dependence License

Introduction

HDNotificationView appears notification view like system.

Portrait Screenshot Portrait Screenshot

Requirement

  • iOS 9.0+

Installation

Carthage

github "nhdang103/HDNotificationView"

Manual

  • Add there files below to your project:

    • HDNotificationView.swift
    • HDNotificationData.swift
    • HDNotificationAppearance.swift
  • Add Snapkit as a dependence framework to your project.

Usage

let notiData = HDNotificationData(
            iconImage: UIImage(named: "Icon"),
            appTitle: "Notification View".uppercased(),
            title: "This is a sample of HDNotificationView ⏰",
            message: "This area that you can input some message to notify to user 🔔",
            time: "now")
        
HDNotificationView.show(data: notiData, onTap: nil, onDidDismiss: nil)

License

HDNotificationView is available under the MIT License. See the LICENSE for details.