Blame view

BT Vendor/NameChangerViewController.h 988 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
//
//  NameChangerViewController.h
//  DUREX Vendor Control
//
//  Created by Imanol Barba on 9/3/14.
//  Copyright (c) 2014 Emmoco. All rights reserved.
//

@class NameChangerViewController;

#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h>
13
#import "BTAppDelegate.h"
Imanol-Mikel Barba Sabariego authored
14
#import "ChildViewController.h"
Imanol-Mikel Barba Sabariego authored
15
16
17
18
19
20
21

@protocol NameChangerViewControllerDelegate <NSObject>
- (void)passNameViewController:(NameChangerViewController*)controller didFinishEnteringItem:(NSArray *)data;

@end
Imanol-Mikel Barba Sabariego authored
22
@interface NameChangerViewController : ChildViewController <UITextFieldDelegate>
Imanol-Mikel Barba Sabariego authored
23
24
25
26
27
28
29

@property (strong, nonatomic) IBOutlet UIView *nameChangerView;
@property (strong, nonatomic) IBOutlet UITextField *name;
@property (strong, nonatomic) IBOutlet UITextField *channel;
@property (strong, nonatomic) IBOutlet UITextField *code;
@property (nonatomic, strong) id <NameChangerViewControllerDelegate> delegate;
Imanol-Mikel Barba Sabariego authored
30
31
- (void) showInView:(UIView *)aView animated:(BOOL)animated;
- (IBAction) closePopup:(id)sender;
Imanol-Mikel Barba Sabariego authored
32
33
34


@end