21 lines
369 B
Objective-C
21 lines
369 B
Objective-C
//
|
|
// GiftTableView.h
|
|
// textGift
|
|
//
|
|
// Created by tuandai on 2017/7/6.
|
|
// Copyright © 2017年 tuandai. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "TCCustomMessageModel.h"
|
|
|
|
@interface GiftTableView : UIView
|
|
|
|
-(void)sendGiftWith:(TCCustomMessageModel*)giftModel;
|
|
|
|
- (void)closeAllObject;
|
|
|
|
@property (nonatomic, assign) NSInteger currentShowNum;
|
|
|
|
@end
|