LocationDetailViewController.h 911 B

123456789101112131415161718192021
  1. //
  2. // LocationDetailViewController.h
  3. // Apex Mobile
  4. //
  5. // Created by Ray on 14-3-18.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <AddressBookUI/AddressBookUI.h>
  10. @interface LocationDetailViewController : UIViewController<ABNewPersonViewControllerDelegate>
  11. //@property (strong, nonatomic) IBOutlet UITextView *nameText;
  12. //@property (strong, nonatomic) IBOutlet UITextView *addrText;
  13. //@property (strong, nonatomic) IBOutlet UITextView *telText;
  14. //@property (strong, nonatomic) IBOutlet UITextView *faxText;
  15. //@property (strong, nonatomic) IBOutlet UITextView *contactText;
  16. //@property (strong, nonatomic) IBOutlet UITextView *emailText;
  17. @property (strong, nonatomic) IBOutlet UITextView *contentText;
  18. @property (strong,nonatomic) NSMutableDictionary* params;
  19. //@property (strong,nonatomic) UINavigationController * aBNewPersonNav;
  20. @end