refactor: Remove commented and dead code

This commit is contained in:
Andrea Busi
2020-08-22 18:39:41 +02:00
parent aa765d7bac
commit e93ddc91d6
12 changed files with 39 additions and 208 deletions
@@ -63,10 +63,7 @@
NSDictionary *dict = @{@"indice":indiceElemento, @"elemento" : elemento};
[self.delegate inviaDati:dict];
}
- (void)viewDidUnload {
[self setPickerController:nil];
[super viewDidUnload];
}
#pragma mark UIPickerViewDataSource
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView{
@@ -34,13 +34,6 @@
[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);
@@ -55,9 +48,4 @@
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
@end