IVTMeGiftViewController.h
512 Bytes
//
// IVTMeGiftViewController.h
// IVTMeLive
//
// Created by XRG on 16/6/6.
// Copyright © 2016年 Joky. All rights reserved.
//
#import <UIKit/UIKit.h>
@class IVTMeGiftViewController;
@protocol IVTMeGiftViewControllerDelegate <NSObject>
-(void)sendGiftWithData:(NSDictionary *)dictData isTenTimes:(BOOL)isTen;
@end
@interface IVTMeGiftViewController : UIViewController
@property(nonatomic,weak)id<IVTMeGiftViewControllerDelegate>delegate;
- (void)updataCurrentMiTang:(NSInteger)currentTotal;
@end