Production version
Add to Git the current app version (the same available in the OriginalZip folder)
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user