Files
eqn.ios/Sources/Earthquake Network/ViewController/inputView/TBDInputViewControllerData.h
T
Andrea Busi 4d8bbdc7ef Production version
Add to Git the current app version (the same available in the OriginalZip folder)
2020-07-24 15:33:53 +02:00

30 lines
822 B
Objective-C

//
// TBDInputViewControllerData.h
// Salva lo scontrino
//
// Created by Luca Beretta on 16/07/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol InputViewControllerDataDelegate <NSObject>
@optional
-(void)dataSelezionata:(NSDate *)data withTextFild:(UITextField *)textFild;
-(void)esci;
@end
@interface TBDInputViewControllerData : UIViewController
@property (nonatomic, retain) id<InputViewControllerDataDelegate> delegate;
@property (nonatomic, retain) IBOutlet UIDatePicker *myDataPicker;
@property (nonatomic, strong) UITextField *testFild;
-(IBAction)chiudiView:(id)sender;
-(IBAction)inviaData:(id)sender;
@property (weak, nonatomic) IBOutlet UIBarButtonItem *cancellaButton;
@property (weak, nonatomic) IBOutlet UIBarButtonItem *confermaButton;
@end