KWMSplashView.h 646 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
//
//  KWMSplashView.h
//  iCemarose
//
//  Created by HouWeiBin on 16/9/5.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h>
#import "KWMSuperLoadingView.h"

@interface KWMSplashView : UIView<CAAnimationDelegate>

@property(nonatomic,weak) IBOutlet UIView *vView;

@property(nonatomic,weak) IBOutlet UIView *vContent;

@property(nonatomic,weak) IBOutlet UIView *vHeader;

@property(nonatomic,weak) IBOutlet UIView *vHeaderBg;

//@property(nonatomic,weak) IBOutlet UIImageView *ivLoading;

@property(nonatomic,weak) IBOutlet KWMSuperLoadingView *vLoading;


- (void)hide;


@end