OliverZiegler / Toast-Swift

A Swift extension that adds toast notifications to the UIView object class.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Toast-Swift

Build Status CocoaPods Version

Toast-Swift is a Swift extension that adds toast notifications to the UIView object class. It is intended to be simple, lightweight, and easy to use. Most toast notifications can be triggered with a single line of code.

Toast-Swift is a native Swift port of Toast for iOS.

Screenshots

Toast-Swift Screenshots

Basic Examples

// basic usage
self.view.makeToast("This is a piece of toast")

// toast with a specific duration and position
self.view.makeToast("This is a piece of toast", duration: 3.0, position: .Top)

// toast with all possible options
self.view.makeToast("This is a piece of toast", duration: 2.0, position: CGPoint(x: 110.0, y: 110.0), title: "Toast Title", image: UIImage(named: "toast.png"), style:nil) { (didTap: Bool) -> Void in
    if didTap {
        print("completion from tap")
    } else {
        print("completion without tap")
    }
}
                
// display toast with an activity spinner
self.view.makeToastActivity(.Center)

// display any view as toast
self.view.showToast(myView)

But wait, there's more!

// create a new style
var style = ToastStyle()

// this is just one of many style options
style.messageColor = UIColor.blueColor()

// present the toast with the new style
self.view.makeToast("This is a piece of toast", duration: 3.0, position: .Bottom, style: style)

// or perhaps you want to use this style for all toasts going forward?
// just set the shared style and there's no need to provide the style again
ToastManager.shared.style = style

// toggle "tap to dismiss" functionality
ToastManager.shared.tapToDismissEnabled = true

// toggle queueing behavior
ToastManager.shared.queueEnabled = true

See the demo project for more examples.

Setup Instructions

Install with CocoaPods by adding the following to your Podfile:

platform :ios, '8.0'
pod 'Toast-Swift', '~> 1.0.0'

or add manually:

  1. Add Toast.swift to your project.
  2. Link against QuartzCore.

MIT License

Copyright (c) 2015 Charles Scalesse.

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A Swift extension that adds toast notifications to the UIView object class.

License:MIT License


Languages

Language:Swift 98.7%Language:Ruby 1.3%