| 12345678910111213141516171819202122232425262728293031 |
- //
- // LocationViewController.h
- // Apex Mobile
- //
- // Created by Ray on 14-2-26.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- //#import <GoogleMaps/GoogleMaps.h>
- #import "const.h"
- #import "RANetwork.h"
- #import <AddressBookUI/AddressBookUI.h>
- #import <Contacts/Contacts.h>
- #import <ContactsUI/ContactsUI.h>
- @interface LocationViewController : UIViewController<CNContactViewControllerDelegate>
- //@interface LocationViewController : UIViewController<GMSMapViewDelegate,CNContactViewControllerDelegate>
- @property (strong,nonatomic) NSMutableDictionary * params;
- -(void) updateLocation;
- -(void) addLocation;
- //@property (strong,nonatomic) NSArray* Locations;
- //@property (strong,nonatomic) NSDictionary* locationJson;
- @property (strong, nonatomic) IBOutlet UIView *mapContainer;
- @property BOOL showNavigation;
- @property (strong,nonatomic) UINavigationController * aBNewPersonNav;
- @property (strong,nonatomic) CNMutableContact *contact;
- @end
|