Skip to content

This is "Alert View" project for UIKit. you can use easily

License

Notifications You must be signed in to change notification settings

DevVenusK/JAlert

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JAlert

Version License Platform

Overview

if you need a customizable Alert, you can use "JAlert" easily. I'd like to use easily for everyone through JAlert Library. When you have the features you want but not in JAlert, just send me your ask.

Installation

JAlert is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'JAlert'

Usage

if you want to use customizing alertView, you can choose "alertType" in JAlert Library. Actually, JAlert contains "Public Proerties" option.

first of all, Import the module

import JAlert

AlertType Usage

default
let alert = JAlert(title: "Title", message: "Content", alertType: .default)
  
alert.setButton(actionName: "OK", onActionClicked: {
  print("onActionClicked")
})

alert.show()

confirm
let alert = JAlert(title: "Title", message: "Content", alertType: .confirm)
  
alert.setButton(actionName: "OK", cancelName: "Cancel", onActionClicked: {
  print("onActionClicked")
}, onCancelClicked: {
  print("onCancelClicked")
})

alert.show()

multi
let alert = JAlert(title: "Title", message: "Content", alertType: .multi)
  
alert.setMultiButton(titles: ["OK", "Cancel", "Something"])

alert.show()

if you want to use button event when you choose multi Type, you have to add JAlertDelegate.

let alert = JAlert(title: "Title", message: "Content", alertType: .mulit)
  
alert.setMultiButton(titles: ["OK", "Cancel", "Something"])
alert.delegate = self

alert.show()


extension SomethingController:JAlertDelegate {
    func alertView(_ alertView: JAlert, clickedButtonAtIndex buttonIndex: Int) {
        print("buttonIndex : ", buttonIndex)
    }
}

Public Proerties (You can customize Alert View!)

public weak var delegate: JAlertDelegate? // delegate
    
public var appearType: AppearType = .default
public var disappearType: DisappearType = .default
    
public var cornerRadius: CGFloat = 8.0
public var textAlignment: NSTextAlignment = .center
public var alertViewBackgroundColor: UIColor = .white
public var actionButtonIndex = 0
public var animationWithDuration:CGFloat = 0.3
  
public var isUseBackgroundView = true
public var isUseSeparator = true
public var isAnimation = true
    
public var titleSideMargin: CGFloat = 20.0
public var titleTopMargin: CGFloat = 20.0
public var titleToMessageSpacing: CGFloat = 20.0
public var messageSideMargin: CGFloat = 20.0
public var messageBottomMargin: CGFloat = 20.0

Author

JacksonJang, [email protected]

License

JAlert is available under the MIT license. See the LICENSE file for more info.

About

This is "Alert View" project for UIKit. you can use easily

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 92.1%
  • Ruby 7.9%