12345678910111213141516171819202122232425262728293031323334 |
- //
- // PdDetailBottomView.h
- // FirstLink
- //
- // Created by jack on 15/7/17.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "PdDetailCellProtocol.h"
- typedef enum {
- kPindanStateWaitBegin = - 1,
- kPindanStateNormal = 0,
- kPindanStateRemind,
- kPindanStateCancelRemind,
- kPindanStateSaleDone,
- kPindanStateOnlyNew,
- kPindanStateOnlyVIP
- } kPindanState;
- typedef enum {
- kBottomCommentBtnTag = 50,
- kBottomShareBtnTag,
- kBottomServiceBtnTag,
- kBottomConfirmBtnTag
- } kBottomBtnTag;
- @interface PdDetailBottomView : UIView
- @property (nonatomic, weak) id <PDDetailMenuDelegate> delegate;
- @property (nonatomic, assign) kPindanState state;
- @property (nonatomic, strong) UIButton *commitBtn;
- @end
|