4d8bbdc7ef
Add to Git the current app version (the same available in the OriginalZip folder)
31 lines
696 B
Objective-C
31 lines
696 B
Objective-C
//
|
|
// MenuSelezioneEntiViewController.h
|
|
// Earthquake Network
|
|
//
|
|
// Created by Luca Beretta on 06/02/2019.
|
|
// Copyright © 2019 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "costanti.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@protocol MenuSelezioneEntiDelegate <NSObject>
|
|
|
|
-(void)inviaDati:(EQNfiltroEnti )filtro;
|
|
-(void)apriElencoEnti;
|
|
|
|
@end
|
|
|
|
@interface MenuSelezioneEntiViewController : UIViewController
|
|
@property (weak, nonatomic) IBOutlet UITextField *textNazione;
|
|
@property (strong, nonatomic) id<MenuSelezioneEntiDelegate> delegate;
|
|
|
|
- (IBAction)selezionaNazione:(id)sender;
|
|
- (IBAction)selezionaEnte:(id)sender;
|
|
- (IBAction)annulla:(id)sender;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|