首页 > 代码库 > 引导页总结
引导页总结
Page类
继承于NSObject,保存每个page的信息,如各种图片、文字、标题内容等。
@interface EAIntroPage : NSObject// title image Y position - from top of the screen// title and description labels Y position - from bottom of the screen@property (nonatomic, retain) UIImage *bgImage;@property (nonatomic, retain) UIImage *titleImage;@property (nonatomic, assign) CGFloat imgPositionY;@property (nonatomic, retain) NSString *title;@property (nonatomic, retain) UIFont *titleFont;@property (nonatomic, retain) UIColor *titleColor;@property (nonatomic, assign) CGFloat titlePositionY;@property (nonatomic, retain) NSString *desc;@property (nonatomic, retain) UIFont *descFont;@property (nonatomic, retain) UIColor *descColor;@property (nonatomic, assign) CGFloat descPositionY;// if customView is set - all other properties are ignored@property (nonatomic, retain) UIView *customView;+ (EAIntroPage *)page;+ (EAIntroPage *)pageWithCustomView:(UIView *)customV;@end
View类的subViews
1.UIImageView *bgImageView
背景图片
2.UIImageView *pageBgBack
3.UIImageView *pageBgFront
4.UIScrollView *scrollView NSMutableArray *pageViews
5.UIView *titleView;
引导页总结
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。