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