WhereAmIViewController.h
上传用户:jjjjag8
上传日期:2017-04-17
资源大小:1443k
文件大小:1k
源码类别:

iPhone

开发平台:

MultiPlatform

  1. //
  2. //  WhereAmIViewController.h
  3. //  WhereAmI
  4. //
  5. //  Created by Jeff LaMarche on 8/4/08.
  6. //  Copyright __MyCompanyName__ 2008. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <CoreLocation/CoreLocation.h>
  10. @interface WhereAmIViewController : UIViewController <CLLocationManagerDelegate> {
  11. CLLocationManager *locationManager;
  12. CLLocation *startingPoint;
  13. IBOutlet UILabel *latitudeLabel;
  14. IBOutlet UILabel *longitudeLabel;
  15. IBOutlet UILabel *horizontalAccuracyLabel;
  16. IBOutlet UILabel *altitudeLabel;
  17. IBOutlet UILabel *verticalAccuracyLabel;
  18. IBOutlet UILabel *distanceTraveled;
  19. }
  20. @property (retain, nonatomic) CLLocationManager *locationManager;
  21. @property (retain, nonatomic) CLLocation *startingPoint;
  22. @property (retain, nonatomic) UILabel *latitudeLabel;
  23. @property (retain, nonatomic) UILabel *longitudeLabel;
  24. @property (retain, nonatomic) UILabel *horizontalAccuracyLabel;
  25. @property (retain, nonatomic) UILabel *altitudeLabel;
  26. @property (retain, nonatomic) UILabel *verticalAccuracyLabel;
  27. @property (retain, nonatomic) UILabel *distanceTraveled;
  28. @end