Production version

Add to Git the current app version (the same available in the OriginalZip folder)
This commit is contained in:
Andrea Busi
2020-07-24 15:33:53 +02:00
parent 2d2284e066
commit 4d8bbdc7ef
394 changed files with 32151 additions and 0 deletions
@@ -0,0 +1,29 @@
//
// 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