LocationViewController.h 1007 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // LocationViewController.h
  3. // Apex Mobile
  4. //
  5. // Created by Ray on 14-2-26.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //#import <GoogleMaps/GoogleMaps.h>
  10. #import "const.h"
  11. #import "RANetwork.h"
  12. #import <AddressBookUI/AddressBookUI.h>
  13. #import <Contacts/Contacts.h>
  14. #import <ContactsUI/ContactsUI.h>
  15. @interface LocationViewController : UIViewController<CNContactViewControllerDelegate>
  16. //@interface LocationViewController : UIViewController<GMSMapViewDelegate,CNContactViewControllerDelegate>
  17. @property (strong,nonatomic) NSMutableDictionary * params;
  18. -(void) updateLocation;
  19. -(void) addLocation;
  20. //@property (strong,nonatomic) NSArray* Locations;
  21. //@property (strong,nonatomic) NSDictionary* locationJson;
  22. @property (strong, nonatomic) IBOutlet UIView *mapContainer;
  23. @property BOOL showNavigation;
  24. @property (strong,nonatomic) UINavigationController * aBNewPersonNav;
  25. @property (strong,nonatomic) CNMutableContact *contact;
  26. @end