CCIntro.m 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. //
  2. // CCIntro.m
  3. // Nextcloud iOS
  4. //
  5. // Created by Marino Faggiana on 05/11/15.
  6. // Copyright (c) 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. #import "CCIntro.h"
  24. @interface CCIntro ()
  25. {
  26. int titlePositionY;
  27. int descPositionY;
  28. int titleIconPositionY;
  29. }
  30. @end
  31. @implementation CCIntro
  32. - (id)initWithDelegate:(id <CCIntroDelegate>)delegate delegateView:(UIView *)delegateView
  33. {
  34. self = [super init];
  35. if (self) {
  36. self.delegate = delegate;
  37. self.rootView = delegateView;
  38. }
  39. return self;
  40. }
  41. - (void)introWillFinish:(EAIntroView *)introView wasSkipped:(BOOL)wasSkipped
  42. {
  43. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
  44. if (self.delegate && [self.delegate respondsToSelector:@selector(introWillFinish:wasSkipped:)])
  45. [self.delegate introWillFinish:introView wasSkipped:wasSkipped];
  46. }
  47. - (void)introDidFinish:(EAIntroView *)introView wasSkipped:(BOOL)wasSkipped
  48. {
  49. if (self.delegate && [self.delegate respondsToSelector:@selector(introDidFinish:wasSkipped:)])
  50. [self.delegate introDidFinish:introView wasSkipped:wasSkipped];
  51. }
  52. - (void)showIntroCryptoCloud:(CGFloat)duration
  53. {
  54. //NSString *language = [[[NSBundle mainBundle] preferredLocalizations] objectAtIndex:0];
  55. CGFloat height = self.rootView.bounds.size.height;
  56. if (height <= 480) {
  57. titleIconPositionY = 20; titlePositionY = 260; descPositionY = 230;
  58. }
  59. // 812 = iPhoneX
  60. if (height > 480 && height <= 812) {
  61. titleIconPositionY = 50; titlePositionY = height / 2; descPositionY = height / 2 - 40 ;
  62. }
  63. if (height > 812) {
  64. titleIconPositionY = 100; titlePositionY = 290; descPositionY = 250;
  65. }
  66. EAIntroPage *page1 = [EAIntroPage page];
  67. page1.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro1"]];
  68. page1.title = NSLocalizedStringFromTable(@"_intro_1_title_", @"Intro", nil);
  69. page1.desc = NSLocalizedStringFromTable(@"_intro_1_text_", @"Intro", nil);
  70. page1.titlePositionY = titlePositionY;
  71. page1.titleColor = [UIColor blackColor];
  72. page1.titleFont = [UIFont systemFontOfSize:20];
  73. page1.descPositionY = descPositionY;
  74. page1.descColor = [UIColor blackColor];
  75. page1.descFont = [UIFont systemFontOfSize:14];
  76. page1.bgImage = [UIImage imageNamed:@"bgbianco"];
  77. page1.titleIconPositionY = titleIconPositionY;
  78. page1.showTitleView = NO;
  79. EAIntroPage *page11 = [EAIntroPage page];
  80. page11.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro11"]];
  81. page11.title = NSLocalizedStringFromTable(@"_intro_11_title_", @"Intro", nil);
  82. page11.desc = NSLocalizedStringFromTable(@"_intro_11_text_", @"Intro", nil);
  83. page11.titlePositionY = titlePositionY;
  84. page11.titleColor = [UIColor blackColor];
  85. page11.titleFont = [UIFont systemFontOfSize:20];
  86. page11.descPositionY = descPositionY;
  87. page11.descColor = [UIColor blackColor];
  88. page11.descFont = [UIFont systemFontOfSize:14];
  89. page11.bgImage = [UIImage imageNamed:@"bgbianco"];
  90. page11.titleIconPositionY = titleIconPositionY;
  91. page11.showTitleView = NO;
  92. EAIntroPage *page2 = [EAIntroPage page];
  93. page2.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro2"]];
  94. page2.title = NSLocalizedStringFromTable(@"_intro_2_title_", @"Intro", nil);
  95. page2.desc = NSLocalizedStringFromTable(@"_intro_2_text_", @"Intro", nil);
  96. page2.titlePositionY = titlePositionY;
  97. page2.titleColor = [UIColor blackColor];
  98. page2.titleFont = [UIFont systemFontOfSize:20];
  99. page2.descPositionY = descPositionY;
  100. page2.descColor = [UIColor blackColor];
  101. page2.descFont = [UIFont systemFontOfSize:14];
  102. page2.bgImage = [UIImage imageNamed:@"bgbianco"];
  103. page2.titleIconPositionY = titleIconPositionY;
  104. page2.showTitleView = NO;
  105. EAIntroPage *page3 = [EAIntroPage page];
  106. page3.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro3"]];
  107. page3.title = NSLocalizedStringFromTable(@"_intro_3_title_", @"Intro", nil);
  108. page3.desc = NSLocalizedStringFromTable(@"_intro_3_text_", @"Intro", nil);
  109. page3.titlePositionY = titlePositionY;
  110. page3.titleColor = [UIColor blackColor];
  111. page3.titleFont = [UIFont systemFontOfSize:20];
  112. page3.descPositionY = descPositionY;
  113. page3.descColor = [UIColor blackColor];
  114. page3.descFont = [UIFont systemFontOfSize:14];
  115. page3.bgImage = [UIImage imageNamed:@"bgbianco"];
  116. page3.titleIconPositionY = titleIconPositionY;
  117. page3.showTitleView = NO;
  118. EAIntroView *intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds];
  119. intro.tapToNext = YES;
  120. intro.pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
  121. intro.pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
  122. intro.pageControl.backgroundColor = [UIColor clearColor];
  123. [intro.skipButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
  124. intro.skipButton.enabled = NO;
  125. page1.onPageDidAppear = ^{
  126. intro.skipButton.enabled = YES;
  127. [UIView animateWithDuration:0.3f animations:^{
  128. intro.skipButton.alpha = 1.f;
  129. }];
  130. };
  131. page2.onPageDidDisappear = ^{
  132. intro.skipButton.enabled = NO;
  133. [UIView animateWithDuration:0.3f animations:^{
  134. intro.skipButton.alpha = 0.f;
  135. }];
  136. };
  137. [intro setDelegate:self];
  138. [intro setPages:@[page1,page11,page2,page3]];
  139. [intro showInView:self.rootView animateDuration:duration];
  140. [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
  141. }
  142. @end