|
@@ -84,6 +84,22 @@
|
|
|
page1.titleIconPositionY = titleIconPositionY;
|
|
|
page1.showTitleView = NO;
|
|
|
|
|
|
+ EAIntroPage *page11 = [EAIntroPage page];
|
|
|
+
|
|
|
+ page11.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro11"]];
|
|
|
+ page11.title = NSLocalizedStringFromTable(@"_intro_11_title_", @"Intro", nil);
|
|
|
+ page11.desc = NSLocalizedStringFromTable(@"_intro_11_text_", @"Intro", nil);
|
|
|
+
|
|
|
+ page11.titlePositionY = titlePositionY;
|
|
|
+ page11.titleColor = [UIColor blackColor];
|
|
|
+ page11.titleFont = [UIFont systemFontOfSize:20];
|
|
|
+ page11.descPositionY = descPositionY;
|
|
|
+ page11.descColor = [UIColor blackColor];
|
|
|
+ page11.descFont = [UIFont systemFontOfSize:14];
|
|
|
+ page11.bgImage = [UIImage imageNamed:@"bgbianco"];
|
|
|
+ page11.titleIconPositionY = titleIconPositionY;
|
|
|
+ page11.showTitleView = NO;
|
|
|
+
|
|
|
EAIntroPage *page2 = [EAIntroPage page];
|
|
|
|
|
|
page2.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro2"]];
|
|
@@ -117,7 +133,7 @@
|
|
|
page3.showTitleView = NO;
|
|
|
|
|
|
|
|
|
- EAIntroView *intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page1, page2, page3]];
|
|
|
+ EAIntroView *intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page1, page11, page2, page3]];
|
|
|
//intro.backgroundColor = [UIColor whiteColor];
|
|
|
intro.tapToNext = YES;
|
|
|
intro.pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
|