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,63 @@
//
// TBDInputViewControllerData.m
// Salva lo scontrino
//
// Created by Luca Beretta on 16/07/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import "TBDInputViewControllerData.h"
@interface TBDInputViewControllerData ()
@end
@implementation TBDInputViewControllerData
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
self.myDataPicker.date = [NSDate date];
[self.cancellaButton setTitle:NSLocalizedString(@"Annulla", @"")];
[self.confermaButton setTitle:NSLocalizedString(@"Seleziona", @"")];
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown) || (interfaceOrientation == UIInterfaceOrientationPortrait);
}
-(IBAction)chiudiView:(id)sender{
[self.delegate esci];
}
-(IBAction)inviaData:(id)sender{
[self.delegate dataSelezionata:self.myDataPicker.date withTextFild:self.testFild];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
@end