1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #import <UIKit/UIKit.h>
- #import "EAIntroView.h"
- #import "CCUtility.h"
- @protocol CCIntroDelegate;
- @interface CCIntro : NSObject <EAIntroDelegate>
- - (id)initWithDelegate:(id <CCIntroDelegate>)delegate delegateView:(UIView *)delegateView;
- @property (nonatomic, weak) id <CCIntroDelegate> delegate;
- @property (nonatomic, strong) UIView *rootView;
- - (void)showIntroCryptoCloud:(CGFloat)duration;
- @end
- @protocol CCIntroDelegate <NSObject>
- @optional - (void)introWillFinish:(EAIntroView *)introView wasSkipped:(BOOL)wasSkipped;
- @optional - (void)introDidFinish:(EAIntroView *)introView wasSkipped:(BOOL)wasSkipped;
- @end
|