-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCustomAlertViewController.h
48 lines (30 loc) · 1.06 KB
/
CustomAlertViewController.h
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// CustomAlertViewController.h
// MapShot
//
//
#import <UIKit/UIKit.h>
#import "TermsAndConditonsViewController.h"
@protocol CustomAlertViewControllerDelegate;
@interface CustomAlertViewController : UIViewController <UITextFieldDelegate>{
IBOutlet UIButton *okBUtton;
IBOutlet UIButton *cancelBUtton;
IBOutlet UIView *contentView;
UITextField *newuserTextField;
UIButton *checkMarkButton;
UILabel *agreeLabel;
UILabel *linkLabel;
UIButton *agreeButton;
UILabel *newUserLabel;
}
@property (nonatomic, weak) id<CustomAlertViewControllerDelegate> delegate;
-(IBAction) okAction:(UIButton*) sender;
-(IBAction) cancelAction:(UIButton*) sender;
-(IBAction)termsAndCondition:(UIButton*)sender;
@end
@protocol CustomAlertViewControllerDelegate <NSObject>
- (void)customalertOK:(CustomAlertViewController*)viewController
button:(UIButton*)sender textFieldValue:(NSString*)valueString;
- (void)customalertCancel:(CustomAlertViewController*)viewController
button:(UIButton*)sender;
@end