123456789101112131415161718192021222324252627 |
- //
- // PDDetailViewController.h
- // FirstLink
- //
- // Created by 王孝道 on 15/6/3.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- // 拼单详情页面
- #import "FLViewController.h"
- //#import "PindanDetailModel.h"
- #import "PindanDetailViewModel.h"
- @protocol FKCollectStatusDelegate <NSObject>
- @optional
- - (void)collectStatusChange:(NSString *)itemID status:(BOOL)isCollect;
- @end
- @interface PindanDetailController : FLViewController
- @property (nonatomic, weak ) id<FKCollectStatusDelegate> delegate;
- - (instancetype)initWithUserID:(NSString *)userID postID:(NSString *)postID;
- @end
|