CCIntro.m 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161
  1. //
  2. // CCIntro.m
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 05/11/15.
  6. // Copyright (c) 2014 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)introDidFinish:(EAIntroView *)introView wasSkipped:(BOOL)wasSkipped
  42. {
  43. if (self.delegate && [self.delegate respondsToSelector:@selector(introDidFinish:wasSkipped:)])
  44. [self.delegate introDidFinish:introView wasSkipped:wasSkipped];
  45. }
  46. - (void)showIntroCryptoCloud:(CGFloat)duration
  47. {
  48. CGFloat height = self.rootView.bounds.size.height;
  49. if (height <= 480) { titleIconPositionY = 20; titlePositionY = 260; descPositionY = 230; }
  50. if (height >= 500 && height <= 800) { titleIconPositionY = 50; titlePositionY = height / 2; descPositionY = height / 2 - 40 ; }
  51. if (height >= 1024) { titleIconPositionY = 100; titlePositionY = 290; descPositionY = 250; }
  52. EAIntroPage *page1 = [EAIntroPage page];
  53. page1.title = [CCUtility localizableBrand:@"_intro_01_" table:@"Intro"]; // "BENVENUTO"
  54. page1.titlePositionY = titlePositionY;
  55. page1.titleColor = COLOR_GRAY;
  56. page1.titleFont = RalewayMedium(20.0f);
  57. page1.desc = [CCUtility localizableBrand:@"_intro_02_" table:@"Intro"];
  58. page1.descPositionY = descPositionY;
  59. page1.descColor = COLOR_GRAY;
  60. page1.descFont = RalewayLight(14.0f);
  61. #ifdef CC
  62. page1.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro1"]];
  63. page1.bgImage = [UIImage imageNamed:@"bgbianco"];
  64. #endif
  65. #ifdef NC
  66. page1.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro1Nextcloud"]];
  67. page1.bgImage = [UIImage imageNamed:@"bgbianco"];
  68. #endif
  69. page1.titleIconPositionY = titleIconPositionY;
  70. page1.showTitleView = NO;
  71. EAIntroPage *page2 = [EAIntroPage page];
  72. page2.title = [CCUtility localizableBrand:@"_intro_03_" table:@"Intro"]; // "CHIAVE DI CRIPTAZIONE"
  73. page2.titlePositionY = titlePositionY;
  74. page2.titleFont = RalewayMedium(20.0f);
  75. page2.desc = [CCUtility localizableBrand:@"_intro_04_" table:@"Intro"];
  76. page2.descPositionY = descPositionY;
  77. page2.descFont = RalewayLight(14.0f);
  78. #ifdef CC
  79. page2.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro2"]];
  80. page2.bgImage = [UIImage imageNamed:@"bggrigio"];
  81. page2.titleColor = [UIColor whiteColor];
  82. page2.descColor = [UIColor whiteColor];
  83. #endif
  84. #ifdef NC
  85. page2.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro2Nextcloud"]];
  86. page2.bgImage = [UIImage imageNamed:@"bgbianco"];
  87. page2.titleColor = COLOR_GRAY;
  88. page2.descColor = COLOR_GRAY;
  89. #endif
  90. page2.titleIconPositionY = titleIconPositionY;
  91. page2.showTitleView = NO;
  92. EAIntroPage *page3 = [EAIntroPage page];
  93. page3.title = [CCUtility localizableBrand:@"_intro_05_" table:@"Intro"]; // ACCEDI
  94. page3.titlePositionY = titlePositionY;
  95. page3.titleFont = RalewayMedium(20.0f);
  96. page3.descPositionY = descPositionY;
  97. page3.descFont = RalewayLight(14.0f);
  98. #ifdef CC
  99. page3.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro3"]];
  100. page3.bgImage = [UIImage imageNamed:@"bgarancio"];
  101. page3.titleColor = [UIColor whiteColor];
  102. page3.descColor = [UIColor whiteColor];
  103. page3.desc = [CCUtility localizableBrand:@"_intro_06_" table:@"Intro"];
  104. #endif
  105. #ifdef NC
  106. page3.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro3Nextcloud"]];
  107. page3.bgImage = [UIImage imageNamed:@"bgbianco"];
  108. page3.titleColor = COLOR_GRAY;
  109. page3.descColor = COLOR_GRAY;
  110. page3.desc = [CCUtility localizableBrand:@"_intro_06_Nextcloud_" table:@"Intro"];
  111. #endif
  112. page3.titleIconPositionY = titleIconPositionY;
  113. page3.showTitleView = NO;
  114. EAIntroPage *page4 = [EAIntroPage page];
  115. page4.title = [[CCUtility localizableBrand:@"_intro_07_" table:@"Intro"] uppercaseString]; // "CRYPTO CLOUD" - "NEXTCLOUD"
  116. page4.titlePositionY = titlePositionY;
  117. page4.titleColor = COLOR_GRAY;
  118. page4.titleFont = RalewayMedium(20.0f);
  119. page4.desc = [CCUtility localizableBrand:@"_intro_08_" table:@"Intro"];
  120. page4.descPositionY = descPositionY;
  121. page4.descColor = COLOR_GRAY;
  122. page4.descFont = RalewayLight(14.0f);
  123. #ifdef CC
  124. page4.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro4"]];
  125. page4.bgImage = [UIImage imageNamed:@"bgbianco"];
  126. #endif
  127. #ifdef NC
  128. page4.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro4Nextcloud"]];
  129. page4.bgImage = [UIImage imageNamed:@"bgbianco"];
  130. #endif
  131. page4.titleIconPositionY = titleIconPositionY;
  132. page4.showTitleView = NO;
  133. EAIntroPage *page5 = [EAIntroPage page];
  134. page5.title = [CCUtility localizableBrand:@"_intro_09_" table:@"Intro"]; // "OFFLINE & LOCAL"
  135. page5.titlePositionY = titlePositionY;
  136. page5.titleFont = RalewayMedium(20.0f);
  137. page5.desc = [CCUtility localizableBrand:@"_intro_10_" table:@"Intro"];
  138. page5.descPositionY = descPositionY;
  139. page5.descFont = RalewayLight(14.0f);
  140. #ifdef CC
  141. page5.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro5"]];
  142. page5.bgImage = [UIImage imageNamed:@"bgarancio"];
  143. page5.titleColor = [UIColor whiteColor];
  144. page5.descColor = [UIColor whiteColor];
  145. #endif
  146. #ifdef NC
  147. page5.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro5Nextcloud"]];
  148. page5.bgImage = [UIImage imageNamed:@"bgbianco"];
  149. page5.titleColor = COLOR_GRAY;
  150. page5.descColor = COLOR_GRAY;
  151. #endif
  152. page5.titleIconPositionY = titleIconPositionY;
  153. page5.showTitleView = NO;
  154. EAIntroPage *page6 = [EAIntroPage page];
  155. page6.title = [CCUtility localizableBrand:@"_intro_11_" table:@"Intro"]; // "CRIPTA / DECRIPTA"
  156. page6.titlePositionY = titlePositionY;
  157. page6.titleFont = RalewayMedium(20.0f);
  158. page6.desc = [CCUtility localizableBrand:@"_intro_12_" table:@"Intro"];
  159. page6.descPositionY = descPositionY;
  160. page6.descFont = RalewayLight(14.0f);
  161. #ifdef CC
  162. page6.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro6"]];
  163. page6.bgImage = [UIImage imageNamed:@"bggrigio"];
  164. page6.titleColor = [UIColor whiteColor];
  165. page6.descColor = [UIColor whiteColor];
  166. #endif
  167. #ifdef NC
  168. page6.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro6Nextcloud"]];
  169. page6.bgImage = [UIImage imageNamed:@"bgbianco"];
  170. page6.titleColor = COLOR_GRAY;
  171. page6.descColor = COLOR_GRAY;
  172. #endif
  173. page6.titleIconPositionY = titleIconPositionY;
  174. page6.showTitleView = NO;
  175. EAIntroPage *page7 = [EAIntroPage page];
  176. page7.title = [CCUtility localizableBrand:@"_intro_13_" table:@"Intro"]; // "AGGIUNGI"
  177. page7.titlePositionY = titlePositionY;
  178. page7.titleColor = COLOR_GRAY;
  179. page7.titleFont = RalewayMedium(20.0f);
  180. page7.desc = [CCUtility localizableBrand:@"_intro_14_" table:@"Intro"];
  181. page7.descPositionY = descPositionY;
  182. page7.descColor = COLOR_GRAY;
  183. page7.descFont = RalewayLight(14.0f);
  184. #ifdef CC
  185. page7.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro7"]];
  186. page7.bgImage = [UIImage imageNamed:@"bgbianco"];
  187. #endif
  188. #ifdef NC
  189. page7.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro7Nextcloud"]];
  190. page7.bgImage = [UIImage imageNamed:@"bgbianco"];
  191. #endif
  192. page7.titleIconPositionY = titleIconPositionY;
  193. page7.showTitleView = NO;
  194. EAIntroPage *page8 = [EAIntroPage page];
  195. page8.title = [CCUtility localizableBrand:@"_intro_15_" table:@"Intro"]; // "TEMPLATES"
  196. page8.titlePositionY = titlePositionY;
  197. page8.titleFont = RalewayMedium(20.0f);
  198. page8.desc = [CCUtility localizableBrand:@"_intro_16_" table:@"Intro"];
  199. page8.descPositionY = descPositionY;
  200. page8.descFont = RalewayLight(14.0f);
  201. #ifdef CC
  202. page8.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro8"]];
  203. page8.bgImage = [UIImage imageNamed:@"bgarancio"];
  204. page8.titleColor = [UIColor whiteColor];
  205. page8.descColor = [UIColor whiteColor];
  206. #endif
  207. #ifdef NC
  208. page8.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro8Nextcloud"]];
  209. page8.bgImage = [UIImage imageNamed:@"bgbianco"];
  210. page8.titleColor = COLOR_GRAY;
  211. page8.descColor = COLOR_GRAY;
  212. #endif
  213. page8.titleIconPositionY = titleIconPositionY;
  214. page8.showTitleView = NO;
  215. EAIntroPage *page9 = [EAIntroPage page];
  216. page9.title = [CCUtility localizableBrand:@"_intro_17_" table:@"Intro"]; // "BLOCCO PASSCODE"
  217. page9.titlePositionY = titlePositionY;
  218. page9.titleFont = RalewayMedium(20.0f);
  219. page9.desc = [CCUtility localizableBrand:@"_intro_18_" table:@"Intro"];
  220. page9.descPositionY = descPositionY;
  221. page9.descFont = RalewayLight(14.0f);
  222. #ifdef CC
  223. page9.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro9"]];
  224. page9.bgImage = [UIImage imageNamed:@"bggrigio"];
  225. page9.titleColor = [UIColor whiteColor];
  226. page9.descColor = [UIColor whiteColor];
  227. #endif
  228. #ifdef NC
  229. page9.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro9Nextcloud"]];
  230. page9.bgImage = [UIImage imageNamed:@"bgbianco"];
  231. page9.titleColor = COLOR_GRAY;
  232. page9.descColor = COLOR_GRAY;
  233. #endif
  234. page9.titleIconPositionY = titleIconPositionY;
  235. page9.showTitleView = NO;
  236. EAIntroPage *page10 = [EAIntroPage page];
  237. page10.title = [CCUtility localizableBrand:@"_intro_19_" table:@"Intro"]; // "INIZIO"
  238. page10.titlePositionY = titlePositionY;
  239. page10.titleColor = COLOR_GRAY;
  240. page10.titleFont = RalewayMedium(20.0f);
  241. page10.descPositionY = descPositionY;
  242. page10.descColor = COLOR_GRAY;
  243. page10.descFont = RalewayLight(14.0f);
  244. #ifdef CC
  245. page10.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro10"]];
  246. page10.bgImage = [UIImage imageNamed:@"bgbianco"];
  247. page10.desc = [CCUtility localizableBrand:@"_intro_20_" table:@"Intro"];
  248. #endif
  249. #ifdef NC
  250. page10.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro10Nextcloud"]];
  251. page10.bgImage = [UIImage imageNamed:@"bgbianco"];
  252. page10.desc = [CCUtility localizableBrand:@"_intro_20_Nextcloud_" table:@"Intro"];
  253. #endif
  254. page10.titleIconPositionY = titleIconPositionY;
  255. page10.showTitleView = NO;
  256. EAIntroView *intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page1, page2, page3, page4, page5, page6, page7, page8, page9, page10]];
  257. //intro.backgroundColor = [UIColor whiteColor];
  258. intro.tapToNext = YES;
  259. intro.pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
  260. intro.pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
  261. intro.pageControl.backgroundColor = [UIColor clearColor];
  262. [intro.skipButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
  263. [intro setDelegate:self];
  264. [intro showInView:self.rootView animateDuration:duration];
  265. }
  266. - (void)showIntroVersion:(NSString *)version duration:(CGFloat)duration review:(BOOL)review
  267. {
  268. CGFloat height = self.rootView.bounds.size.height;
  269. EAIntroView *intro;
  270. if ([version isEqualToString:@"1.90"]) {
  271. if (height <= 480) { titleIconPositionY = 20; titlePositionY = 230; descPositionY = 180; }
  272. if (height >= 500 && height <= 800) { titleIconPositionY = 50; titlePositionY = height / 2; descPositionY = height / 2 - 40 ; }
  273. if (height >= 1024) { titleIconPositionY = 100; titlePositionY = 290; descPositionY = 250; }
  274. EAIntroPage *page0 = [EAIntroPage page];
  275. page0.title = [@"Version " stringByAppendingString:version];
  276. page0.titlePositionY = titlePositionY;
  277. page0.titleColor = COLOR_GRAY;
  278. page0.titleFont = RalewayMedium(20.0f);
  279. page0.desc = [CCUtility localizableBrand:@"_intro_190_00_" table:@"Intro"];
  280. page0.descPositionY = descPositionY;
  281. page0.descColor = COLOR_GRAY;
  282. page0.descFont = RalewayLight(14.0f);
  283. page0.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introStart"]];
  284. page0.bgImage = [UIImage imageNamed:@"bgbianco"];
  285. page0.titleIconPositionY = titleIconPositionY;
  286. page0.showTitleView = NO;
  287. EAIntroPage *page1 = [EAIntroPage page];
  288. page1.title = [CCUtility localizableBrand:@"_intro_190_01_" table:@"Intro"]; //
  289. page1.titlePositionY = titlePositionY;
  290. page1.titleColor = COLOR_GRAY;
  291. page1.titleFont = RalewayMedium(20.0f);
  292. page1.desc = [CCUtility localizableBrand:@"_intro_190_02_" table:@"Intro"];
  293. page1.descPositionY = descPositionY;
  294. page1.descColor = COLOR_GRAY;
  295. page1.descFont = RalewayLight(14.0f);
  296. page1.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro190-1"]];
  297. page1.bgImage = [UIImage imageNamed:@"bgbianco"];
  298. page1.titleIconPositionY = titleIconPositionY;
  299. page1.showTitleView = NO;
  300. EAIntroPage *page2 = [EAIntroPage page];
  301. page2.title = [CCUtility localizableBrand:@"_intro_190_03_" table: @"Intro"]; //
  302. page2.titlePositionY = titlePositionY;
  303. page2.titleColor = COLOR_GRAY;
  304. page2.titleFont = RalewayMedium(20.0f);
  305. page2.desc = [CCUtility localizableBrand:@"_intro_190_04_" table: @"Intro"];
  306. page2.descPositionY = descPositionY;
  307. page2.descColor = COLOR_GRAY;
  308. page2.descFont = RalewayLight(14.0f);
  309. page2.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro190-2"]];
  310. page2.bgImage = [UIImage imageNamed:@"bgbianco"];
  311. page2.titleIconPositionY = titleIconPositionY;
  312. page2.showTitleView = NO;
  313. EAIntroPage *page3 = [EAIntroPage page];
  314. page3.title = [CCUtility localizableBrand:@"_intro_190_05_" table: @"Intro"]; //
  315. page3.titlePositionY = titlePositionY;
  316. page3.titleColor = COLOR_GRAY;
  317. page3.titleFont = RalewayMedium(20.0f);
  318. page3.desc = [CCUtility localizableBrand:@"_intro_190_06_" table: @"Intro"];
  319. page3.descPositionY = descPositionY;
  320. page3.descColor = COLOR_GRAY;
  321. page3.descFont = RalewayLight(14.0f);
  322. page3.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro190-3"]];
  323. page3.bgImage = [UIImage imageNamed:@"bgbianco"];
  324. page3.titleIconPositionY = titleIconPositionY;
  325. page3.showTitleView = NO;
  326. EAIntroPage *page4 = [EAIntroPage page];
  327. page4.title = [CCUtility localizableBrand:@"_intro_190_07_" table: @"Intro"]; //
  328. page4.titlePositionY = titlePositionY;
  329. page4.titleColor = COLOR_GRAY;
  330. page4.titleFont = RalewayMedium(20.0f);
  331. page4.desc = [CCUtility localizableBrand:@"_intro_190_08_" table: @"Intro"];
  332. page4.descPositionY = descPositionY;
  333. page4.descColor = COLOR_GRAY;
  334. page4.descFont = RalewayLight(14.0f);
  335. page4.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro190-4"]];
  336. page4.bgImage = [UIImage imageNamed:@"bgbianco"];
  337. page4.titleIconPositionY = titleIconPositionY;
  338. page4.showTitleView = NO;
  339. EAIntroPage *page5 = [EAIntroPage page];
  340. page5.title = [CCUtility localizableBrand:@"_intro_190_09_" table: @"Intro"]; //
  341. page5.titlePositionY = titlePositionY;
  342. page5.titleColor = COLOR_GRAY;
  343. page5.titleFont = RalewayMedium(20.0f);
  344. page5.desc = [CCUtility localizableBrand:@"_intro_190_10_" table: @"Intro"];
  345. page5.descPositionY = descPositionY;
  346. page5.descColor = COLOR_GRAY;
  347. page5.descFont = RalewayLight(14.0f);
  348. page5.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro190-5"]];
  349. page5.bgImage = [UIImage imageNamed:@"bgbianco"];
  350. page5.titleIconPositionY = titleIconPositionY;
  351. page5.showTitleView = NO;
  352. EAIntroPage *page6 = [EAIntroPage page];
  353. page6.title = [CCUtility localizableBrand:@"_intro_190_11_" table: @"Intro"]; //
  354. page6.titlePositionY = titlePositionY;
  355. page6.titleColor = COLOR_GRAY;
  356. page6.titleFont = RalewayMedium(20.0f);
  357. page6.desc = [CCUtility localizableBrand:@"_intro_190_12_" table: @"Intro"];
  358. page6.descPositionY = descPositionY;
  359. page6.descColor = COLOR_GRAY;
  360. page6.descFont = RalewayLight(14.0f);
  361. page6.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro190-6"]];
  362. page6.bgImage = [UIImage imageNamed:@"bgbianco"];
  363. page6.titleIconPositionY = titleIconPositionY;
  364. page6.showTitleView = NO;
  365. EAIntroPage *pageEnd = [EAIntroPage page];
  366. pageEnd.title = [CCUtility localizableBrand:@"_intro_END_01_" table: @"Intro"]; //
  367. pageEnd.titlePositionY = titlePositionY;
  368. pageEnd.titleColor = COLOR_GRAY;
  369. pageEnd.titleFont = RalewayMedium(20.0f);
  370. pageEnd.desc = [CCUtility localizableBrand:@"_intro_END_02_" table: @"Intro"];
  371. pageEnd.descPositionY = descPositionY;
  372. pageEnd.descColor = COLOR_GRAY;
  373. pageEnd.descFont = RalewayLight(14.0f);
  374. pageEnd.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introEnd"]];
  375. pageEnd.bgImage = [UIImage imageNamed:@"bgbianco"];
  376. pageEnd.titleIconPositionY = titleIconPositionY;
  377. pageEnd.showTitleView = NO;
  378. if (review) intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page1, page2, page3, page4, page5, page6]];
  379. else intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page0, page1, page2, page3, page4, page5, page6, pageEnd]];
  380. //intro.backgroundColor = [UIColor whiteColor];
  381. intro.tapToNext = YES;
  382. intro.pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
  383. intro.pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
  384. intro.pageControl.backgroundColor = [UIColor clearColor];
  385. [intro.skipButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
  386. [intro setDelegate:self];
  387. [intro showInView:self.rootView animateDuration:duration];
  388. }
  389. else if ([version isEqualToString:@"1.91"]) {
  390. if (height <= 480) { titleIconPositionY = 20; titlePositionY = 230; descPositionY = 180; }
  391. if (height >= 500 && height <= 800) { titleIconPositionY = 50; titlePositionY = height / 2; descPositionY = height / 2 - 40 ; }
  392. if (height >= 1024) { titleIconPositionY = 100; titlePositionY = 290; descPositionY = 250; }
  393. EAIntroPage *page0 = [EAIntroPage page];
  394. page0.title = [@"Version " stringByAppendingString:version];
  395. page0.titlePositionY = titlePositionY;
  396. page0.titleColor = COLOR_GRAY;
  397. page0.titleFont = RalewayMedium(20.0f);
  398. page0.desc = [CCUtility localizableBrand:@"_intro_191_00_" table: @"Intro"];
  399. page0.descPositionY = descPositionY;
  400. page0.descColor = COLOR_GRAY;
  401. page0.descFont = RalewayLight(14.0f);
  402. page0.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introStart"]];
  403. page0.bgImage = [UIImage imageNamed:@"bgbianco"];
  404. page0.titleIconPositionY = titleIconPositionY;
  405. page0.showTitleView = NO;
  406. EAIntroPage *page1 = [EAIntroPage page];
  407. page1.title = [CCUtility localizableBrand:@"_intro_191_01_" table: @"Intro"]; //
  408. page1.titlePositionY = titlePositionY;
  409. page1.titleColor = COLOR_GRAY;
  410. page1.titleFont = RalewayMedium(20.0f);
  411. page1.desc = [CCUtility localizableBrand:@"_intro_191_02_" table: @"Intro"];
  412. page1.descPositionY = descPositionY;
  413. page1.descColor = COLOR_GRAY;
  414. page1.descFont = RalewayLight(14.0f);
  415. page1.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro191-1"]];
  416. page1.bgImage = [UIImage imageNamed:@"bgbianco"];
  417. page1.titleIconPositionY = titleIconPositionY;
  418. page1.showTitleView = NO;
  419. EAIntroPage *page2 = [EAIntroPage page];
  420. page2.title = [CCUtility localizableBrand:@"_intro_191_03_" table: @"Intro"]; //
  421. page2.titlePositionY = titlePositionY;
  422. page2.titleColor = COLOR_GRAY;
  423. page2.titleFont = RalewayMedium(20.0f);
  424. page2.desc = [CCUtility localizableBrand:@"_intro_191_04_" table: @"Intro"];
  425. page2.descPositionY = descPositionY;
  426. page2.descColor = COLOR_GRAY;
  427. page2.descFont = RalewayLight(14.0f);
  428. page2.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro191-2"]];
  429. page2.bgImage = [UIImage imageNamed:@"bgbianco"];
  430. page2.titleIconPositionY = titleIconPositionY;
  431. page2.showTitleView = NO;
  432. EAIntroPage *page3 = [EAIntroPage page];
  433. page3.title = [CCUtility localizableBrand:@"_intro_191_05_" table: @"Intro"]; //
  434. page3.titlePositionY = titlePositionY;
  435. page3.titleColor = COLOR_GRAY;
  436. page3.titleFont = RalewayMedium(20.0f);
  437. page3.desc = [CCUtility localizableBrand:@"_intro_191_06_" table: @"Intro"];
  438. page3.descPositionY = descPositionY;
  439. page3.descColor = COLOR_GRAY;
  440. page3.descFont = RalewayLight(14.0f);
  441. page3.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro191-3"]];
  442. page3.bgImage = [UIImage imageNamed:@"bgbianco"];
  443. page3.titleIconPositionY = titleIconPositionY;
  444. page3.showTitleView = NO;
  445. EAIntroPage *page4 = [EAIntroPage page];
  446. page4.title = [CCUtility localizableBrand:@"_intro_191_07_" table:@"Intro"]; //
  447. page4.titlePositionY = titlePositionY;
  448. page4.titleColor = COLOR_GRAY;
  449. page4.titleFont = RalewayMedium(20.0f);
  450. page4.desc = [CCUtility localizableBrand:@"_intro_191_08_" table: @"Intro"];
  451. page4.descPositionY = descPositionY;
  452. page4.descColor = COLOR_GRAY;
  453. page4.descFont = RalewayLight(14.0f);
  454. page4.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro191-4"]];
  455. page4.bgImage = [UIImage imageNamed:@"bgbianco"];
  456. page4.titleIconPositionY = titleIconPositionY;
  457. page4.showTitleView = NO;
  458. EAIntroPage *pageEnd = [EAIntroPage page];
  459. pageEnd.title = [CCUtility localizableBrand:@"_intro_END_01_" table: @"Intro"]; //
  460. pageEnd.titlePositionY = titlePositionY;
  461. pageEnd.titleColor = COLOR_GRAY;
  462. pageEnd.titleFont = RalewayMedium(20.0f);
  463. pageEnd.desc = [CCUtility localizableBrand:@"_intro_END_02_" table: @"Intro"];
  464. pageEnd.descPositionY = descPositionY;
  465. pageEnd.descColor = COLOR_GRAY;
  466. pageEnd.descFont = RalewayLight(14.0f);
  467. pageEnd.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introEnd"]];
  468. pageEnd.bgImage = [UIImage imageNamed:@"bgbianco"];
  469. pageEnd.titleIconPositionY = titleIconPositionY;
  470. pageEnd.showTitleView = NO;
  471. if (review) intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page1, page2, page3, page4]];
  472. else intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page0, page1, page2, page3, page4, pageEnd]];
  473. //intro.backgroundColor = [UIColor whiteColor];
  474. intro.tapToNext = YES;
  475. intro.pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
  476. intro.pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
  477. intro.pageControl.backgroundColor = [UIColor clearColor];
  478. [intro.skipButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
  479. [intro setDelegate:self];
  480. [intro showInView:self.rootView animateDuration:duration];
  481. }
  482. else if ([version isEqualToString:@"1.94"]) {
  483. if (height <= 480) { titleIconPositionY = 20; titlePositionY = 230; descPositionY = 180; }
  484. if (height >= 500 && height <= 800) { titleIconPositionY = 50; titlePositionY = height / 2; descPositionY = height / 2 - 40 ; }
  485. if (height >= 1024) { titleIconPositionY = 100; titlePositionY = 290; descPositionY = 250; }
  486. EAIntroPage *page0 = [EAIntroPage page];
  487. page0.title = [@"Version " stringByAppendingString:version];
  488. page0.titlePositionY = titlePositionY;
  489. page0.titleColor = COLOR_GRAY;
  490. page0.titleFont = RalewayMedium(20.0f);
  491. page0.desc = [CCUtility localizableBrand:@"_intro_194_00_"table: @"Intro"];
  492. page0.descPositionY = descPositionY;
  493. page0.descColor = COLOR_GRAY;
  494. page0.descFont = RalewayLight(14.0f);
  495. page0.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introStart"]];
  496. page0.bgImage = [UIImage imageNamed:@"bgbianco"];
  497. page0.titleIconPositionY = titleIconPositionY;
  498. page0.showTitleView = NO;
  499. EAIntroPage *page1 = [EAIntroPage page];
  500. page1.title = [CCUtility localizableBrand:@"_intro_194_01_" table:@"Intro"]; //
  501. page1.titlePositionY = titlePositionY;
  502. page1.titleColor = COLOR_GRAY;
  503. page1.titleFont = RalewayMedium(20.0f);
  504. page1.desc = [CCUtility localizableBrand:@"_intro_194_02_" table: @"Intro"];
  505. page1.descPositionY = descPositionY;
  506. page1.descColor = COLOR_GRAY;
  507. page1.descFont = RalewayLight(14.0f);
  508. page1.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro194-1"]];
  509. page1.bgImage = [UIImage imageNamed:@"bgbianco"];
  510. page1.titleIconPositionY = titleIconPositionY;
  511. page1.showTitleView = NO;
  512. EAIntroPage *page2 = [EAIntroPage page];
  513. page2.title = [CCUtility localizableBrand:@"_intro_194_03_" table: @"Intro"]; //
  514. page2.titlePositionY = titlePositionY;
  515. page2.titleColor = COLOR_GRAY;
  516. page2.titleFont = RalewayMedium(20.0f);
  517. page2.desc = [CCUtility localizableBrand:@"_intro_194_04_" table: @"Intro"];
  518. page2.descPositionY = descPositionY;
  519. page2.descColor = COLOR_GRAY;
  520. page2.descFont = RalewayLight(14.0f);
  521. page2.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro194-2"]];
  522. page2.bgImage = [UIImage imageNamed:@"bgbianco"];
  523. page2.titleIconPositionY = titleIconPositionY;
  524. page2.showTitleView = NO;
  525. EAIntroPage *page3 = [EAIntroPage page];
  526. page3.title = [CCUtility localizableBrand:@"_intro_194_05_" table: @"Intro"]; //
  527. page3.titlePositionY = titlePositionY;
  528. page3.titleColor = COLOR_GRAY;
  529. page3.titleFont = RalewayMedium(20.0f);
  530. page3.desc = [CCUtility localizableBrand:@"_intro_194_06_" table: @"Intro"];
  531. page3.descPositionY = descPositionY;
  532. page3.descColor = COLOR_GRAY;
  533. page3.descFont = RalewayLight(14.0f);
  534. page3.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro194-3"]];
  535. page3.bgImage = [UIImage imageNamed:@"bgbianco"];
  536. page3.titleIconPositionY = titleIconPositionY;
  537. page3.showTitleView = NO;
  538. EAIntroPage *page4 = [EAIntroPage page];
  539. page4.title = [CCUtility localizableBrand:@"_intro_194_07_" table: @"Intro"]; //
  540. page4.titlePositionY = titlePositionY;
  541. page4.titleColor = COLOR_GRAY;
  542. page4.titleFont = RalewayMedium(20.0f);
  543. page4.desc = [CCUtility localizableBrand:@"_intro_194_08_" table: @"Intro"];
  544. page4.descPositionY = descPositionY;
  545. page4.descColor = COLOR_GRAY;
  546. page4.descFont = RalewayLight(14.0f);
  547. page4.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro194-4"]];
  548. page4.bgImage = [UIImage imageNamed:@"bgbianco"];
  549. page4.titleIconPositionY = titleIconPositionY;
  550. page4.showTitleView = NO;
  551. EAIntroPage *pageEnd = [EAIntroPage page];
  552. pageEnd.title = [CCUtility localizableBrand:@"_intro_END_01_" table: @"Intro"]; //
  553. pageEnd.titlePositionY = titlePositionY;
  554. pageEnd.titleColor = COLOR_GRAY;
  555. pageEnd.titleFont = RalewayMedium(20.0f);
  556. pageEnd.desc = [CCUtility localizableBrand:@"_intro_END_02_" table: @"Intro"];
  557. pageEnd.descPositionY = descPositionY;
  558. pageEnd.descColor = COLOR_GRAY;
  559. pageEnd.descFont = RalewayLight(14.0f);
  560. pageEnd.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introEnd"]];
  561. pageEnd.bgImage = [UIImage imageNamed:@"bgbianco"];
  562. pageEnd.titleIconPositionY = titleIconPositionY;
  563. pageEnd.showTitleView = NO;
  564. if (review) intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page1, page2, page3, page4]];
  565. else intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page0, page1, page2, page3, page4, pageEnd]];
  566. //intro.backgroundColor = [UIColor whiteColor];
  567. intro.tapToNext = YES;
  568. intro.pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
  569. intro.pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
  570. intro.pageControl.backgroundColor = [UIColor clearColor];
  571. [intro.skipButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
  572. [intro setDelegate:self];
  573. [intro showInView:self.rootView animateDuration:duration];
  574. }
  575. else if ([version isEqualToString:@"1.96"]) {
  576. if (height <= 480) { titleIconPositionY = 20; titlePositionY = 230; descPositionY = 180; }
  577. if (height >= 500 && height <= 800) { titleIconPositionY = 50; titlePositionY = height / 2; descPositionY = height / 2 - 40 ; }
  578. if (height >= 1024) { titleIconPositionY = 100; titlePositionY = 290; descPositionY = 250; }
  579. EAIntroPage *page0 = [EAIntroPage page];
  580. page0.title = [@"Version " stringByAppendingString:version];
  581. page0.titlePositionY = titlePositionY;
  582. page0.titleColor = COLOR_GRAY;
  583. page0.titleFont = RalewayMedium(20.0f);
  584. page0.desc = [CCUtility localizableBrand:@"_intro_196_00_" table: @"Intro"];
  585. page0.descPositionY = descPositionY;
  586. page0.descColor = COLOR_GRAY;
  587. page0.descFont = RalewayLight(14.0f);
  588. page0.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introStart"]];
  589. page0.bgImage = [UIImage imageNamed:@"bgbianco"];
  590. page0.titleIconPositionY = titleIconPositionY;
  591. page0.showTitleView = NO;
  592. EAIntroPage *page1 = [EAIntroPage page];
  593. page1.title = [CCUtility localizableBrand:@"_intro_196_01_" table: @"Intro"]; //
  594. page1.titlePositionY = titlePositionY;
  595. page1.titleColor = COLOR_GRAY;
  596. page1.titleFont = RalewayMedium(20.0f);
  597. page1.desc = [CCUtility localizableBrand:@"_intro_196_02_" table: @"Intro"];
  598. page1.descPositionY = descPositionY;
  599. page1.descColor = COLOR_GRAY;
  600. page1.descFont = RalewayLight(14.0f);
  601. page1.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro196-1"]];
  602. page1.bgImage = [UIImage imageNamed:@"bgbianco"];
  603. page1.titleIconPositionY = titleIconPositionY;
  604. page1.showTitleView = NO;
  605. EAIntroPage *page2 = [EAIntroPage page];
  606. page2.title = [CCUtility localizableBrand:@"_intro_196_03_" table: @"Intro"]; //
  607. page2.titlePositionY = titlePositionY;
  608. page2.titleColor = COLOR_GRAY;
  609. page2.titleFont = RalewayMedium(20.0f);
  610. page2.desc = [CCUtility localizableBrand:@"_intro_196_04_" table: @"Intro"];
  611. page2.descPositionY = descPositionY;
  612. page2.descColor = COLOR_GRAY;
  613. page2.descFont = RalewayLight(14.0f);
  614. page2.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro196-2"]];
  615. page2.bgImage = [UIImage imageNamed:@"bgbianco"];
  616. page2.titleIconPositionY = titleIconPositionY;
  617. page2.showTitleView = NO;
  618. EAIntroPage *page3 = [EAIntroPage page];
  619. page3.title = [CCUtility localizableBrand:@"_intro_196_05_" table: @"Intro"]; //
  620. page3.titlePositionY = titlePositionY;
  621. page3.titleColor = COLOR_GRAY;
  622. page3.titleFont = RalewayMedium(20.0f);
  623. page3.desc = [CCUtility localizableBrand:@"_intro_196_06_" table: @"Intro"];
  624. page3.descPositionY = descPositionY;
  625. page3.descColor = COLOR_GRAY;
  626. page3.descFont = RalewayLight(14.0f);
  627. page3.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro196-3"]];
  628. page3.bgImage = [UIImage imageNamed:@"bgbianco"];
  629. page3.titleIconPositionY = titleIconPositionY;
  630. page3.showTitleView = NO;
  631. EAIntroPage *page4 = [EAIntroPage page];
  632. page4.title = [CCUtility localizableBrand:@"_intro_196_07_" table: @"Intro"]; //
  633. page4.titlePositionY = titlePositionY;
  634. page4.titleColor = COLOR_GRAY;
  635. page4.titleFont = RalewayMedium(20.0f);
  636. page4.desc = [CCUtility localizableBrand:@"_intro_196_08_" table: @"Intro"];
  637. page4.descPositionY = descPositionY;
  638. page4.descColor = COLOR_GRAY;
  639. page4.descFont = RalewayLight(14.0f);
  640. page4.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro196-4"]];
  641. page4.bgImage = [UIImage imageNamed:@"bgbianco"];
  642. page4.titleIconPositionY = titleIconPositionY;
  643. page4.showTitleView = NO;
  644. EAIntroPage *page5 = [EAIntroPage page];
  645. page5.title = [CCUtility localizableBrand:@"_intro_196_09_" table: @"Intro"]; //
  646. page5.titlePositionY = titlePositionY;
  647. page5.titleColor = COLOR_GRAY;
  648. page5.titleFont = RalewayMedium(20.0f);
  649. page5.desc = [CCUtility localizableBrand:@"_intro_196_10_" table: @"Intro"];
  650. page5.descPositionY = descPositionY;
  651. page5.descColor = COLOR_GRAY;
  652. page5.descFont = RalewayLight(14.0f);
  653. page5.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro196-5"]];
  654. page5.bgImage = [UIImage imageNamed:@"bgbianco"];
  655. page5.titleIconPositionY = titleIconPositionY;
  656. page5.showTitleView = NO;
  657. EAIntroPage *page6 = [EAIntroPage page];
  658. page6.title = [CCUtility localizableBrand:@"_intro_196_11_" table: @"Intro"]; //
  659. page6.titlePositionY = titlePositionY;
  660. page6.titleColor = COLOR_GRAY;
  661. page6.titleFont = RalewayMedium(20.0f);
  662. page6.desc = [CCUtility localizableBrand:@"_intro_196_12_" table: @"Intro"];
  663. page6.descPositionY = descPositionY;
  664. page6.descColor = COLOR_GRAY;
  665. page6.descFont = RalewayLight(14.0f);
  666. page6.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro196-6"]];
  667. page6.bgImage = [UIImage imageNamed:@"bgbianco"];
  668. page6.titleIconPositionY = titleIconPositionY;
  669. page6.showTitleView = NO;
  670. EAIntroPage *page7 = [EAIntroPage page];
  671. page7.title = [CCUtility localizableBrand:@"_intro_196_13_" table: @"Intro"]; //
  672. page7.titlePositionY = titlePositionY;
  673. page7.titleColor = COLOR_GRAY;
  674. page7.titleFont = RalewayMedium(20.0f);
  675. page7.desc = [CCUtility localizableBrand:@"_intro_196_14_" table: @"Intro"];
  676. page7.descPositionY = descPositionY;
  677. page7.descColor = COLOR_GRAY;
  678. page7.descFont = RalewayLight(14.0f);
  679. page7.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro196-7"]];
  680. page7.bgImage = [UIImage imageNamed:@"bgbianco"];
  681. page7.titleIconPositionY = titleIconPositionY;
  682. page7.showTitleView = NO;
  683. EAIntroPage *page8 = [EAIntroPage page];
  684. page8.title = [CCUtility localizableBrand:@"_intro_196_17_" table: @"Intro"]; //
  685. page8.titlePositionY = titlePositionY;
  686. page8.titleColor = COLOR_GRAY;
  687. page8.titleFont = RalewayMedium(20.0f);
  688. page8.desc = [CCUtility localizableBrand:@"_intro_196_18_" table: @"Intro"];
  689. page8.descPositionY = descPositionY;
  690. page8.descColor = COLOR_GRAY;
  691. page8.descFont = RalewayLight(14.0f);
  692. page8.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro196-9"]];
  693. page8.bgImage = [UIImage imageNamed:@"bgbianco"];
  694. page8.titleIconPositionY = titleIconPositionY;
  695. page8.showTitleView = NO;
  696. EAIntroPage *page9 = [EAIntroPage page];
  697. page9.title = [CCUtility localizableBrand:@"_intro_196_19_" table: @"Intro"]; //
  698. page9.titlePositionY = titlePositionY;
  699. page9.titleColor = COLOR_GRAY;
  700. page9.titleFont = RalewayMedium(20.0f);
  701. page9.desc = [CCUtility localizableBrand:@"_intro_196_20_" table: @"Intro"];
  702. page9.descPositionY = descPositionY;
  703. page9.descColor = COLOR_GRAY;
  704. page9.descFont = RalewayLight(14.0f);
  705. page9.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro196-10"]];
  706. page9.bgImage = [UIImage imageNamed:@"bgbianco"];
  707. page9.titleIconPositionY = titleIconPositionY;
  708. page9.showTitleView = NO;
  709. EAIntroPage *page10 = [EAIntroPage page];
  710. page10.title = [CCUtility localizableBrand:@"_intro_196_21_" table: @"Intro"]; //
  711. page10.titlePositionY = titlePositionY;
  712. page10.titleColor = COLOR_GRAY;
  713. page10.titleFont = RalewayMedium(20.0f);
  714. page10.desc = [CCUtility localizableBrand:@"_intro_196_22_" table: @"Intro"];
  715. page10.descPositionY = descPositionY;
  716. page10.descColor = COLOR_GRAY;
  717. page10.descFont = RalewayLight(14.0f);
  718. page10.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro196-11"]];
  719. page10.bgImage = [UIImage imageNamed:@"bgbianco"];
  720. page10.titleIconPositionY = titleIconPositionY;
  721. page10.showTitleView = NO;
  722. EAIntroPage *pageEnd = [EAIntroPage page];
  723. pageEnd.title = [CCUtility localizableBrand:@"_intro_END_01_" table: @"Intro"]; //
  724. pageEnd.titlePositionY = titlePositionY;
  725. pageEnd.titleColor = COLOR_GRAY;
  726. pageEnd.titleFont = RalewayMedium(20.0f);
  727. pageEnd.desc = [CCUtility localizableBrand:@"_intro_END_02_" table: @"Intro"];
  728. pageEnd.descPositionY = descPositionY;
  729. pageEnd.descColor = COLOR_GRAY;
  730. pageEnd.descFont = RalewayLight(14.0f);
  731. pageEnd.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introEnd"]];
  732. pageEnd.bgImage = [UIImage imageNamed:@"bgbianco"];
  733. pageEnd.titleIconPositionY = titleIconPositionY;
  734. pageEnd.showTitleView = NO;
  735. if (review) intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page1, page2, page3, page4, page5, page6, page7, page8, page9, page10]];
  736. else intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page0, page1, page2, page3, page4, page5, page6, page7, page8, page9, page10, pageEnd]];
  737. //intro.backgroundColor = [UIColor whiteColor];
  738. intro.tapToNext = YES;
  739. intro.pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
  740. intro.pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
  741. intro.pageControl.backgroundColor = [UIColor clearColor];
  742. [intro.skipButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
  743. [intro setDelegate:self];
  744. [intro showInView:self.rootView animateDuration:duration];
  745. }
  746. else if ([version isEqualToString:@"1.97"]) {
  747. if (height <= 480) { titleIconPositionY = 20; titlePositionY = 230; descPositionY = 180; }
  748. if (height >= 500 && height <= 800) { titleIconPositionY = 50; titlePositionY = height / 2; descPositionY = height / 2 - 40 ; }
  749. if (height >= 1024) { titleIconPositionY = 100; titlePositionY = 290; descPositionY = 250; }
  750. EAIntroPage *page0 = [EAIntroPage page];
  751. page0.title = [@"Version " stringByAppendingString:version];
  752. page0.titlePositionY = titlePositionY;
  753. page0.titleColor = COLOR_GRAY;
  754. page0.titleFont = RalewayMedium(20.0f);
  755. page0.desc = [CCUtility localizableBrand:@"_intro_197_00_" table: @"Intro"];
  756. page0.descPositionY = descPositionY;
  757. page0.descColor = COLOR_GRAY;
  758. page0.descFont = RalewayLight(14.0f);
  759. page0.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introStart"]];
  760. page0.bgImage = [UIImage imageNamed:@"bgbianco"];
  761. page0.titleIconPositionY = titleIconPositionY;
  762. page0.showTitleView = NO;
  763. EAIntroPage *page1 = [EAIntroPage page];
  764. page1.title = [CCUtility localizableBrand:@"_intro_197_01_" table: @"Intro"]; //
  765. page1.titlePositionY = titlePositionY;
  766. page1.titleColor = COLOR_GRAY;
  767. page1.titleFont = RalewayMedium(20.0f);
  768. page1.desc = [CCUtility localizableBrand:@"_intro_197_02_" table: @"Intro"];
  769. page1.descPositionY = descPositionY;
  770. page1.descColor = COLOR_GRAY;
  771. page1.descFont = RalewayLight(14.0f);
  772. page1.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro197-1"]];
  773. page1.bgImage = [UIImage imageNamed:@"bgbianco"];
  774. page1.titleIconPositionY = titleIconPositionY;
  775. page1.showTitleView = NO;
  776. EAIntroPage *pageEnd = [EAIntroPage page];
  777. pageEnd.title = [CCUtility localizableBrand:@"_intro_END_01_" table: @"Intro"]; //
  778. pageEnd.titlePositionY = titlePositionY;
  779. pageEnd.titleColor = COLOR_GRAY;
  780. pageEnd.titleFont = RalewayMedium(20.0f);
  781. pageEnd.desc = [CCUtility localizableBrand:@"_intro_END_02_" table: @"Intro"];
  782. pageEnd.descPositionY = descPositionY;
  783. pageEnd.descColor = COLOR_GRAY;
  784. pageEnd.descFont = RalewayLight(14.0f);
  785. pageEnd.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introEnd"]];
  786. pageEnd.bgImage = [UIImage imageNamed:@"bgbianco"];
  787. pageEnd.titleIconPositionY = titleIconPositionY;
  788. pageEnd.showTitleView = NO;
  789. if (review) intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page1]];
  790. else intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page0, page1, pageEnd]];
  791. //intro.backgroundColor = [UIColor whiteColor];
  792. intro.tapToNext = YES;
  793. intro.pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
  794. intro.pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
  795. intro.pageControl.backgroundColor = [UIColor clearColor];
  796. [intro.skipButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
  797. [intro setDelegate:self];
  798. [intro showInView:self.rootView animateDuration:duration];
  799. }
  800. else if ([version isEqualToString:@"1.99"]) {
  801. if (height <= 480) { titleIconPositionY = 20; titlePositionY = 230; descPositionY = 180; }
  802. if (height >= 500 && height <= 800) { titleIconPositionY = 50; titlePositionY = height / 2; descPositionY = height / 2 - 40 ; }
  803. if (height >= 1024) { titleIconPositionY = 100; titlePositionY = 290; descPositionY = 250; }
  804. EAIntroPage *page0 = [EAIntroPage page];
  805. page0.title = [@"Version " stringByAppendingString:version];
  806. page0.titlePositionY = titlePositionY;
  807. page0.titleColor = COLOR_GRAY;
  808. page0.titleFont = RalewayMedium(20.0f);
  809. page0.desc = [CCUtility localizableBrand:@"_intro_199_00_" table: @"Intro"];
  810. page0.descPositionY = descPositionY;
  811. page0.descColor = COLOR_GRAY;
  812. page0.descFont = RalewayLight(14.0f);
  813. page0.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introStart"]];
  814. page0.bgImage = [UIImage imageNamed:@"bgbianco"];
  815. page0.titleIconPositionY = titleIconPositionY;
  816. page0.showTitleView = NO;
  817. EAIntroPage *page1 = [EAIntroPage page];
  818. page1.title = [CCUtility localizableBrand:@"_intro_199_01_" table: @"Intro"]; //
  819. page1.titlePositionY = titlePositionY;
  820. page1.titleColor = COLOR_GRAY;
  821. page1.titleFont = RalewayMedium(20.0f);
  822. page1.desc = [CCUtility localizableBrand:@"_intro_199_02_" table: @"Intro"];
  823. page1.descPositionY = descPositionY;
  824. page1.descColor = COLOR_GRAY;
  825. page1.descFont = RalewayLight(14.0f);
  826. #ifdef CC
  827. page1.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro199-1"]];
  828. #endif
  829. #ifdef NC
  830. page1.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro199-1_Nextcloud"]];
  831. #endif
  832. page1.bgImage = [UIImage imageNamed:@"bgbianco"];
  833. page1.titleIconPositionY = titleIconPositionY;
  834. page1.showTitleView = NO;
  835. EAIntroPage *pageEnd = [EAIntroPage page];
  836. pageEnd.title = [CCUtility localizableBrand:@"_intro_END_01_" table: @"Intro"]; //
  837. pageEnd.titlePositionY = titlePositionY;
  838. pageEnd.titleColor = COLOR_GRAY;
  839. pageEnd.titleFont = RalewayMedium(20.0f);
  840. pageEnd.desc = [CCUtility localizableBrand:@"_intro_END_02_" table: @"Intro"];
  841. pageEnd.descPositionY = descPositionY;
  842. pageEnd.descColor = COLOR_GRAY;
  843. pageEnd.descFont = RalewayLight(14.0f);
  844. pageEnd.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introEnd"]];
  845. pageEnd.bgImage = [UIImage imageNamed:@"bgbianco"];
  846. pageEnd.titleIconPositionY = titleIconPositionY;
  847. pageEnd.showTitleView = NO;
  848. if (review) intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page1]];
  849. else intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page0, page1, pageEnd]];
  850. //intro.backgroundColor = [UIColor whiteColor];
  851. intro.tapToNext = YES;
  852. intro.pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
  853. intro.pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
  854. intro.pageControl.backgroundColor = [UIColor clearColor];
  855. [intro.skipButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
  856. [intro setDelegate:self];
  857. [intro showInView:self.rootView animateDuration:duration];
  858. }
  859. else if ([version isEqualToString:@"2.0"]) {
  860. if (height <= 480) { titleIconPositionY = 20; titlePositionY = 230; descPositionY = 180; }
  861. if (height >= 500 && height <= 800) { titleIconPositionY = 50; titlePositionY = height / 2; descPositionY = height / 2 - 40 ; }
  862. if (height >= 1024) { titleIconPositionY = 100; titlePositionY = 290; descPositionY = 250; }
  863. EAIntroPage *page0 = [EAIntroPage page];
  864. page0.title = [@"Version " stringByAppendingString:version];
  865. page0.titlePositionY = titlePositionY;
  866. page0.titleColor = COLOR_GRAY;
  867. page0.titleFont = RalewayMedium(20.0f);
  868. page0.desc = [CCUtility localizableBrand:@"_intro_200_00_" table: @"Intro"];
  869. page0.descPositionY = descPositionY;
  870. page0.descColor = COLOR_GRAY;
  871. page0.descFont = RalewayLight(14.0f);
  872. page0.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introStart"]];
  873. page0.bgImage = [UIImage imageNamed:@"bgbianco"];
  874. page0.titleIconPositionY = titleIconPositionY;
  875. page0.showTitleView = NO;
  876. EAIntroPage *page1 = [EAIntroPage page];
  877. page1.title = [CCUtility localizableBrand:@"_intro_200_01_" table: @"Intro"]; //
  878. page1.titlePositionY = titlePositionY;
  879. page1.titleColor = COLOR_GRAY;
  880. page1.titleFont = RalewayMedium(20.0f);
  881. page1.desc = [CCUtility localizableBrand:@"_intro_200_02_" table: @"Intro"];
  882. page1.descPositionY = descPositionY;
  883. page1.descColor = COLOR_GRAY;
  884. page1.descFont = RalewayLight(14.0f);
  885. page1.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro200-1"]];
  886. page1.bgImage = [UIImage imageNamed:@"bgbianco"];
  887. page1.titleIconPositionY = titleIconPositionY;
  888. page1.showTitleView = NO;
  889. EAIntroPage *page2 = [EAIntroPage page];
  890. page2.title = [CCUtility localizableBrand:@"_intro_200_03_" table: @"Intro"]; //
  891. page2.titlePositionY = titlePositionY;
  892. page2.titleColor = COLOR_GRAY;
  893. page2.titleFont = RalewayMedium(20.0f);
  894. page2.desc = [CCUtility localizableBrand:@"_intro_200_04_" table: @"Intro"];
  895. page2.descPositionY = descPositionY;
  896. page2.descColor = COLOR_GRAY;
  897. page2.descFont = RalewayLight(14.0f);
  898. page2.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro200-2"]];
  899. page2.bgImage = [UIImage imageNamed:@"bgbianco"];
  900. page2.titleIconPositionY = titleIconPositionY;
  901. page2.showTitleView = NO;
  902. EAIntroPage *page3 = [EAIntroPage page];
  903. page3.title = [CCUtility localizableBrand:@"_intro_200_05_" table: @"Intro"]; //
  904. page3.titlePositionY = titlePositionY;
  905. page3.titleColor = COLOR_GRAY;
  906. page3.titleFont = RalewayMedium(20.0f);
  907. page3.desc = [CCUtility localizableBrand:@"_intro_200_06_" table: @"Intro"];
  908. page3.descPositionY = descPositionY;
  909. page3.descColor = COLOR_GRAY;
  910. page3.descFont = RalewayLight(14.0f);
  911. page3.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro200-3"]];
  912. page3.bgImage = [UIImage imageNamed:@"bgbianco"];
  913. page3.titleIconPositionY = titleIconPositionY;
  914. page3.showTitleView = NO;
  915. EAIntroPage *page4 = [EAIntroPage page];
  916. page4.title = [CCUtility localizableBrand:@"_intro_200_07_" table: @"Intro"]; //
  917. page4.titlePositionY = titlePositionY;
  918. page4.titleColor = COLOR_GRAY;
  919. page4.titleFont = RalewayMedium(20.0f);
  920. page4.desc = [CCUtility localizableBrand:@"_intro_200_08_" table: @"Intro"];
  921. page4.descPositionY = descPositionY;
  922. page4.descColor = COLOR_GRAY;
  923. page4.descFont = RalewayLight(14.0f);
  924. page4.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro200-4"]];
  925. page4.bgImage = [UIImage imageNamed:@"bgbianco"];
  926. page4.titleIconPositionY = titleIconPositionY;
  927. page4.showTitleView = NO;
  928. EAIntroPage *page5 = [EAIntroPage page];
  929. page5.title = [CCUtility localizableBrand:@"_intro_200_09_" table: @"Intro"]; //
  930. page5.titlePositionY = titlePositionY;
  931. page5.titleColor = COLOR_GRAY;
  932. page5.titleFont = RalewayMedium(20.0f);
  933. page5.desc = [CCUtility localizableBrand:@"_intro_200_10_" table: @"Intro"];
  934. page5.descPositionY = descPositionY;
  935. page5.descColor = COLOR_GRAY;
  936. page5.descFont = RalewayLight(14.0f);
  937. page5.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro200-5"]];
  938. page5.bgImage = [UIImage imageNamed:@"bgbianco"];
  939. page5.titleIconPositionY = titleIconPositionY;
  940. page5.showTitleView = NO;
  941. EAIntroPage *pageEnd = [EAIntroPage page];
  942. pageEnd.title = [CCUtility localizableBrand:@"_intro_END_01_" table: @"Intro"]; //
  943. pageEnd.titlePositionY = titlePositionY;
  944. pageEnd.titleColor = COLOR_GRAY;
  945. pageEnd.titleFont = RalewayMedium(20.0f);
  946. pageEnd.desc = [CCUtility localizableBrand:@"_intro_END_02_" table: @"Intro"];
  947. pageEnd.descPositionY = descPositionY;
  948. pageEnd.descColor = COLOR_GRAY;
  949. pageEnd.descFont = RalewayLight(14.0f);
  950. pageEnd.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introEnd"]];
  951. pageEnd.bgImage = [UIImage imageNamed:@"bgbianco"];
  952. pageEnd.titleIconPositionY = titleIconPositionY;
  953. pageEnd.showTitleView = NO;
  954. if (review) intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page1, page2, page3, page4, page5]];
  955. else intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page0, page1, page2, page3, page4, page5, pageEnd]];
  956. //intro.backgroundColor = [UIColor whiteColor];
  957. intro.tapToNext = YES;
  958. intro.pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
  959. intro.pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
  960. intro.pageControl.backgroundColor = [UIColor clearColor];
  961. [intro.skipButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
  962. [intro setDelegate:self];
  963. [intro showInView:self.rootView animateDuration:duration];
  964. }
  965. else if ([version isEqualToString:@"2.10"]) {
  966. if (height <= 480) { titleIconPositionY = 20; titlePositionY = 230; descPositionY = 180; }
  967. if (height >= 500 && height <= 800) { titleIconPositionY = 50; titlePositionY = height / 2; descPositionY = height / 2 - 40 ; }
  968. if (height >= 1024) { titleIconPositionY = 100; titlePositionY = 290; descPositionY = 250; }
  969. EAIntroPage *page0 = [EAIntroPage page];
  970. page0.title = [@"Version " stringByAppendingString:version];
  971. page0.titlePositionY = titlePositionY;
  972. page0.titleColor = COLOR_GRAY;
  973. page0.titleFont = RalewayMedium(20.0f);
  974. page0.desc = [CCUtility localizableBrand:@"_intro_210_00_" table: @"Intro"];
  975. page0.descPositionY = descPositionY;
  976. page0.descColor = COLOR_GRAY;
  977. page0.descFont = RalewayLight(14.0f);
  978. #ifdef CC
  979. page0.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introStart"]];
  980. #endif
  981. #ifdef NC
  982. page0.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introStartNextcloud"]];
  983. #endif
  984. page0.bgImage = [UIImage imageNamed:@"bgbianco"];
  985. page0.titleIconPositionY = titleIconPositionY;
  986. page0.showTitleView = NO;
  987. EAIntroPage *page1 = [EAIntroPage page];
  988. page1.title = [CCUtility localizableBrand:@"_intro_210_01_" table: @"Intro"]; //
  989. page1.titlePositionY = titlePositionY;
  990. page1.titleColor = COLOR_GRAY;
  991. page1.titleFont = RalewayMedium(20.0f);
  992. page1.desc = [CCUtility localizableBrand:@"_intro_210_02_" table: @"Intro"];
  993. page1.descPositionY = descPositionY;
  994. page1.descColor = COLOR_GRAY;
  995. page1.descFont = RalewayLight(14.0f);
  996. page1.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro210-1"]];
  997. page1.bgImage = [UIImage imageNamed:@"bgbianco"];
  998. page1.titleIconPositionY = titleIconPositionY;
  999. page1.showTitleView = NO;
  1000. EAIntroPage *page2 = [EAIntroPage page];
  1001. page2.title = [CCUtility localizableBrand:@"_intro_210_03_" table: @"Intro"]; //
  1002. page2.titlePositionY = titlePositionY;
  1003. page2.titleColor = COLOR_GRAY;
  1004. page2.titleFont = RalewayMedium(20.0f);
  1005. page2.desc = [CCUtility localizableBrand:@"_intro_210_04_" table: @"Intro"];
  1006. page2.descPositionY = descPositionY;
  1007. page2.descColor = COLOR_GRAY;
  1008. page2.descFont = RalewayLight(14.0f);
  1009. page2.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"intro210-2"]];
  1010. page2.bgImage = [UIImage imageNamed:@"bgbianco"];
  1011. page2.titleIconPositionY = titleIconPositionY;
  1012. page2.showTitleView = NO;
  1013. EAIntroPage *pageEnd = [EAIntroPage page];
  1014. pageEnd.title = [CCUtility localizableBrand:@"_intro_END_01_" table: @"Intro"]; //
  1015. pageEnd.titlePositionY = titlePositionY;
  1016. pageEnd.titleColor = COLOR_GRAY;
  1017. pageEnd.titleFont = RalewayMedium(20.0f);
  1018. pageEnd.descPositionY = descPositionY;
  1019. pageEnd.descColor = COLOR_GRAY;
  1020. pageEnd.descFont = RalewayLight(14.0f);
  1021. #ifdef CC
  1022. pageEnd.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introEnd"]];
  1023. pageEnd.desc = [CCUtility localizableBrand:@"_intro_END_02_" table: @"Intro"];
  1024. #endif
  1025. #ifdef NC
  1026. pageEnd.titleIconView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"introEndNextcloud"]];
  1027. pageEnd.desc = [CCUtility localizableBrand:@"_intro_END_02_Nextcloud_" table: @"Intro"];
  1028. #endif
  1029. pageEnd.bgImage = [UIImage imageNamed:@"bgbianco"];
  1030. pageEnd.titleIconPositionY = titleIconPositionY;
  1031. pageEnd.showTitleView = NO;
  1032. if (review) intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page1, page2]];
  1033. else intro = [[EAIntroView alloc] initWithFrame:self.rootView.bounds andPages:@[page0, page1, page2, pageEnd]];
  1034. //intro.backgroundColor = [UIColor whiteColor];
  1035. intro.tapToNext = YES;
  1036. intro.pageControl.pageIndicatorTintColor = [UIColor lightGrayColor];
  1037. intro.pageControl.currentPageIndicatorTintColor = [UIColor blackColor];
  1038. intro.pageControl.backgroundColor = [UIColor clearColor];
  1039. [intro.skipButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
  1040. [intro setDelegate:self];
  1041. [intro showInView:self.rootView animateDuration:duration];
  1042. } else {
  1043. [self.delegate introDidFinish:intro wasSkipped:NO];
  1044. }
  1045. }
  1046. @end