thellimist / EZAlertController

Easy Swift UIAlertController

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Set Tint Color?

oliverbytes opened this issue · comments

Hi guys, how do we set the Tint Color of the overall dialog in this awesome pod?

This is a simple function template. Every single function provided in this pod is returning the UIAlertController object. You can change anything which UIAlertController allows you to change

    open class func alert(_ title: String) -> UIAlertController {
        return alert(title, message: "")
    }

for tint color check this link

let myAlert = EZAlertController.alert("hey")
// do whatever you want with myAlert