forked from dogo/SCLAlertView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewController.h
More file actions
28 lines (23 loc) · 784 Bytes
/
ViewController.h
File metadata and controls
28 lines (23 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// ViewController.h
// SCLAlertView
//
// Created by Diogo Autilio on 9/26/14.
// Copyright (c) 2014-2016 AnyKey Entertainment. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
- (IBAction)showSuccess:(id)sender;
- (IBAction)showSuccessWithHorizontalButtons:(id)sender;
- (IBAction)showError:(id)sender;
- (IBAction)showNotice:(id)sender;
- (IBAction)showWarning:(id)sender;
- (IBAction)showInfo:(id)sender;
- (IBAction)showEdit:(id)sender;
- (IBAction)showEditWithHorizontalButtons:(id)sender;
- (IBAction)ShowAdvancedWithHorizontalButtons:(id)sender;
- (IBAction)showCustom:(id)sender;
- (IBAction)showValidation:(id)sender;
- (IBAction)showValidationWithHorizontalButtons:(id)sender;
- (IBAction)showWaiting:(id)sender;
@end