123456789101112131415161718192021222324252627282930 |
- //
- // FKAddressListViewModel.h
- // FirstLink
- //
- // Created by ascii on 15/12/7.
- // Copyright © 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "FKAddressListController.h"
- extern int const FKAddressListRequestAll;
- extern int const FKAddressListRequestDelete;
- extern int const FKAddressListRequestDefault;
- @class ShipAddress;
- @interface FKAddressListViewModel : NSObject
- @property (nonatomic, strong) NSMutableArray *addressListArray;
- + (NSString *)navigationTitle:(FKAddressListControllerType)contollerType;
- + (NSString *)rightNaviItemTitle:(FKAddressListControllerType)contollerType;
- - (ShipAddress *)itemAtIndex:(NSInteger)index;
- - (void)setAddressSelected:(NSString *)addressID;
- @end
|