Code Monkey home page Code Monkey logo

dtitoastcenter-swift's Introduction

DTIToastCenter-Swift

A toast center inspired from TKAlertCenter (tapku library) for displaying quick toast to the user written in full swift with great animation.

Toasts are bounded to keyWindow to handle screen rotation and resize/move when keyboard is shown/hidden.

  • Center can be called from both swift or objc project.
  • This component require Xcode6.1 to compile.

ย 

Installation

For application targets that do not support embedded frameworks, such as iOS 7, DTIToastCenter can be integrated by including the *.swift source files directly.

Due to the current lack of proper infrastructure for Swift dependency management, using DTIToastCenter in your project requires the following steps:

  1. Add DTIToastCenter as a submodule by opening the Terminal, cd-ing into your top-level project directory, and entering the command git submodule add https://github.com/dtissera/DTIToastCenter-Swift.git
  2. Open the DTIToastCenter folder, and drag DTIToastCenter.xcodeproj into the file navigator of your app project.
  3. In Xcode, navigate to the target configuration window by clicking on the blue project icon, and selecting the application target under the "Targets" heading in the sidebar.
  4. Ensure that the deployment target of DTIToastCenter.framework matches that of the application target.
  5. In the tab bar at the top of that window, open the "Build Phases" panel.
  6. Expand the "Target Dependencies" group, and add DTIToastCenter.framework.
  7. Click on the + button at the top left of the panel and select "New Copy Files Phase". Rename this new phase to "Copy Frameworks", set the "Destination" to "Frameworks", and add DTIToastCenter.framework.
  8. If you are using this component in an objc target, flag Embedded Content Contains Swift Code in the Build Settings needs to be set to YES.

Usage

Initialize center in your application delegate to listen keyboard events

objc

Register center

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    [[DTIToastCenter defaultCenter] registerCenter];
    return YES;
}

Post alert with text

[[DTIToastCenter defaultCenter] makeText:@"Hey! This is the toast system."];

Post alert with image

[[DTIToastCenter defaultCenter] makeImage:[UIImage imageNamed:@"swift"]];

Post alert with image and text

[[DTIToastCenter defaultCenter] makeText:@"Toast with image !" image:[UIImage imageNamed:@"swift"]];

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.