PresentView.h
524 Bytes
//
// PresentView.h
// presentAnimation
//
// Created by 许博 on 16/7/14.
// Copyright © 2016年 许博. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GiftModel.h"
@class PresentView;
@protocol PresentViewDelegate <NSObject>
- (void)stopShowView:(PresentView *)view;
@end
@interface PresentView : UIView
@property (nonatomic,strong) GiftModel *model;
@property (nonatomic,assign) id<PresentViewDelegate> delegate;
- (void)setUI;
//- (void)animateWithCompleteBlock:(completeBlock)completed;
@end