No Description

FKAddressListViewModel.h 736B

123456789101112131415161718192021222324252627282930
  1. //
  2. // FKAddressListViewModel.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 15/12/7.
  6. // Copyright © 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "FKAddressListController.h"
  10. extern int const FKAddressListRequestAll;
  11. extern int const FKAddressListRequestDelete;
  12. extern int const FKAddressListRequestDefault;
  13. @class ShipAddress;
  14. @interface FKAddressListViewModel : NSObject
  15. @property (nonatomic, strong) NSMutableArray *addressListArray;
  16. + (NSString *)navigationTitle:(FKAddressListControllerType)contollerType;
  17. + (NSString *)rightNaviItemTitle:(FKAddressListControllerType)contollerType;
  18. - (ShipAddress *)itemAtIndex:(NSInteger)index;
  19. - (void)setAddressSelected:(NSString *)addressID;
  20. @end