AlertBuilder(context: self).title("提示").message("已经删除").cancelTitle("知道了").cancellAction ({ (UIAlertAction) in
print("取消")
}).build().showController()
AlertBuilder(context: self).title("提示").message("确定删除么").cancelTitle("取消").confirmTitle("确定").cancellAction ({ (UIAlertAction) in
print("取消")
}).confirmAction({ (UIAlertAction) in
print("确定")
}).build().showController()
近期评论