4d8bbdc7ef
Add to Git the current app version (the same available in the OriginalZip folder)
19 lines
504 B
Objective-C
19 lines
504 B
Objective-C
//
|
|
// NotificationViewController.h
|
|
// EQNNotificationContent
|
|
//
|
|
// Created by Luca Beretta on 03/01/2019.
|
|
// Copyright © 2019 Luca Beretta. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <MapKit/MapKit.h>
|
|
|
|
@interface NotificationViewController : UIViewController
|
|
@property (weak, nonatomic) IBOutlet UILabel *titolo;
|
|
@property (weak, nonatomic) IBOutlet UILabel *descrizione;
|
|
@property (weak, nonatomic) IBOutlet UILabel *onda;
|
|
@property (weak, nonatomic) IBOutlet MKMapView *mappa;
|
|
|
|
@end
|