- December 17, 2024
- Mins Read
SwiftNotice is a GUI library for displaying various popups (HUD) written in pure Swift, fits any scrollview and supports iPhone X.
In any subclass of UIView, UIScrollView, UIViewController, UITableViewController, UITableViewCell:
self.pleaseWait()
self.noticeTop(“OK!”)
self.noticeSuccess(“Success!”)
self.noticeError(“Error!”)
self.noticeInfo(“Info”)
self.noticeOnlyText(“Only Text”)
self.clearAllNotice() // clear
Read the documentation for more information.
Just clone and add SwiftNotice.swift
to your project.
A vertical stackview which takes subviews with different widths and adds them to it's rows with paddings, spacings etc.
AudioManager is a Swift package that provides a modular and easy-to-use interface for implementing audio feedback in your applications. It ...