1234567891011121314151617181920212223242526 |
- //
- // XTGuidePagesViewController.h
- // XTGuidePagesView
- //
- // Created by zjwang on 16/5/30.
- // Copyright © 2016年 夏天. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CALayer+Transition.h"
- @protocol selectDelegate <NSObject>
- - (void)clickEnter;
- @end
- @interface XTGuidePagesViewController : UIViewController
- @property (nonatomic, strong) UIButton *btnEnter;
- // 初始化引导页
- - (void)guidePageControllerWithImages:(NSArray *)images AndTitle:(NSArray *)titles Andtipe:(NSArray *)tipes;
- + (BOOL)isShow;
- @property (nonatomic, assign) id<selectDelegate> delegate;
- //+ (instancetype)shareXTGuideVC;
- @end
|