财神随手记账

JZFeedBackViewController.m 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. //
  2. // JZFeedBackViewController.m
  3. // JIZHANG
  4. //
  5. // Created by jikaipeng on 2017/10/19.
  6. // Copyright © 2017年 kuxuan. All rights reserved.
  7. //
  8. #import "JZFeedBackViewController.h"
  9. @interface JZFeedBackViewController ()<UITextViewDelegate,UITextFieldDelegate>
  10. @property (nonatomic, strong) UITextView *textView;
  11. @property (nonatomic, strong) UITextField *textField;
  12. @property (nonatomic, strong) UIButton *referButton;
  13. @property (nonatomic, copy) NSString *adviceText;
  14. @property (nonatomic, copy) NSString *user_contactText;
  15. @end
  16. @implementation JZFeedBackViewController
  17. {
  18. UILabel *_placeLabel;
  19. UILabel *_shouldInputLabel;
  20. }
  21. - (void)viewDidLoad {
  22. [super viewDidLoad];
  23. self.navigationController.navigationBar.hidden = NO;
  24. // Do any additional setup after loading the view.
  25. self.navTitle = @"意见反馈";
  26. self.view.backgroundColor= [UIColor JZColorWithRed:239 green:239 blue:244];
  27. [self setNavigation];
  28. [self setUpUI];
  29. }
  30. #pragma mark - event handle
  31. - (void)setNavigation{
  32. [self addLeftBarButtonItemWithImageName:@"mine_back" title:@"返回" target:self selector:@selector(backAction)];
  33. }
  34. - (void)backAction{
  35. [self.navigationController popViewControllerAnimated:YES];
  36. }
  37. - (void)referAction{
  38. NSString *urlString = [NSString stringWithFormat:@"%@/addUserMessage",URL];
  39. if (self.adviceText.length && self.user_contactText.length) {
  40. NSDictionary *params = @{@"message":self.adviceText,@"user_contact":self.user_contactText};
  41. [JZHttp post:urlString params:params success:^(id json) {
  42. if (json) {
  43. [self.navigationController popViewControllerAnimated:YES];
  44. [NSThread sleepForTimeInterval:0.5];
  45. [MBProgressHUD showSuccess:@"您的意见,程序员哥哥已经收到,谢谢您的支持"];
  46. }
  47. } failure:^(NSError *error) {
  48. [MBProgressHUD showError:@"提交失败,请重新提交,谢谢"];
  49. }];
  50. }
  51. }
  52. - (void)setUpUI{
  53. _textView = [[UITextView alloc] init];
  54. _textView.font = [UIFont systemFontOfSize:14];
  55. _textView.textColor = [UIColor titleColor];
  56. _textView.backgroundColor = [UIColor whiteColor];
  57. _textView.delegate = self;
  58. _textField = [[UITextField alloc] init];
  59. _textField.font = FONT_SYS(14);
  60. _textField.textColor = [UIColor titleColor];
  61. _textField.backgroundColor = [UIColor whiteColor];
  62. NSAttributedString *textFieldAtt = [[NSAttributedString alloc] initWithString:@"请填写您的邮箱或者微信号,以便我们给您回复" attributes:@{NSForegroundColorAttributeName:[UIColor JZColorWithHex:0x999999]}];
  63. _textField.attributedPlaceholder = textFieldAtt;
  64. [_textField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
  65. UILabel *wxLabel = [[UILabel alloc] initWithFrame:CGRectZero];
  66. wxLabel.font = FONT_SYS(14);
  67. wxLabel.textColor = [UIColor middleTitleColor];
  68. wxLabel.text = @"您的邮箱或者微信号:";
  69. _placeLabel = [[UILabel alloc] init];
  70. _placeLabel.font = [UIFont systemFontOfSize:14];
  71. _placeLabel.textColor = [UIColor JZColorWithHex:0x999999];
  72. _placeLabel.text = @"我们将尽快处理您的反馈,您可以留下您的微信号或者添加客服MM微信:qianduoduojizhang,详细咨询,感谢支持!";
  73. _placeLabel.numberOfLines = 0;
  74. NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc]init];
  75. paragraphStyle.lineBreakMode = NSLineBreakByCharWrapping;
  76. NSDictionary *attributes = @{NSParagraphStyleAttributeName:paragraphStyle};
  77. _placeLabel.attributedText = [[NSAttributedString alloc]initWithString:_placeLabel.text attributes:attributes];
  78. [_placeLabel sizeToFit];
  79. _shouldInputLabel = [[UILabel alloc] init];
  80. _shouldInputLabel.font = [UIFont systemFontOfSize:14];
  81. _shouldInputLabel.textColor = [UIColor JZColorWithHex:0x666666];
  82. _shouldInputLabel.text = @"还可输入100字";
  83. [_textView addSubview:_placeLabel];
  84. _referButton = [[UIButton alloc]init];
  85. _referButton.backgroundColor = [UIColor baseColor];
  86. _referButton.layer.cornerRadius = 12;
  87. _referButton.layer.masksToBounds = YES;
  88. _referButton.enabled = NO;
  89. _referButton.alpha = 0.4;
  90. [_referButton addTarget:self action:@selector(referAction) forControlEvents:UIControlEventTouchUpInside];
  91. NSAttributedString *attributeString = [[NSAttributedString alloc] initWithString:@"提交" attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:16],NSForegroundColorAttributeName:[UIColor blackColor
  92. ]}];
  93. [_referButton setAttributedTitle:attributeString forState:UIControlStateNormal];
  94. // 兼容iOS 8
  95. if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.3 ) {
  96. //使用KVC赋值
  97. [_textView setValue:_placeLabel forKey:@"_placeholderLabel"];
  98. }
  99. [_textView addSubview:_shouldInputLabel];
  100. [self.view addSubview:_textView];
  101. [self.view addSubview:_shouldInputLabel];
  102. [self.view addSubview:wxLabel];
  103. [self.view addSubview:_textField];
  104. [self.view addSubview:self.referButton];
  105. [_textView mas_makeConstraints:^(MASConstraintMaker *make) {
  106. make.top.equalTo(self.view.mas_top).offset(16);
  107. make.left.equalTo(self.view.mas_left).offset(15);
  108. make.right.equalTo(self.view.mas_right).offset(-15);
  109. make.height.mas_equalTo(180);
  110. }];
  111. // [_placeLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  112. // make.top.equalTo(self.view.mas_top).offset(20);
  113. // make.left.equalTo(self.view.mas_left).offset(20);
  114. // make.right.equalTo(self.view.mas_right).offset(-20);
  115. // }];
  116. [_shouldInputLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  117. make.right.equalTo(self.textView.mas_right).offset(-15);
  118. make.bottom.equalTo(self.textView.mas_bottom).offset(-16);
  119. }];
  120. [wxLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  121. make.left.equalTo(self.textView);
  122. make.top.equalTo(self.textView.mas_bottom).offset(16);
  123. }];
  124. [_textField mas_makeConstraints:^(MASConstraintMaker *make) {
  125. make.left.and.right.equalTo(self.textView);
  126. make.top.equalTo(wxLabel.mas_bottom).offset(16);
  127. make.height.equalTo(@50);
  128. }];
  129. [_referButton mas_makeConstraints:^(MASConstraintMaker *make) {
  130. make.top.equalTo(self.textField.mas_bottom).offset(56);
  131. make.height.equalTo(@50);
  132. make.left.equalTo(self.textView.mas_left);
  133. make.right.equalTo(self.textView.mas_right);
  134. }];
  135. }
  136. #pragma mark textview delegate
  137. // 监控文本框文字改变
  138. - (void)textViewDidChange:(UITextView *)textView {
  139. NSString *string = textView.text;
  140. if (self.textField.text.length) {
  141. self.referButton.enabled = YES;
  142. self.referButton.alpha = 1;
  143. }
  144. else {
  145. self.referButton.enabled = NO;
  146. self.referButton.alpha = 0.4;
  147. }
  148. if (string.length == 0) {
  149. _shouldInputLabel.text = @"还可输入100字";
  150. _referButton.enabled = NO;
  151. _referButton.alpha = 0.4;
  152. }
  153. else if (string.length < 100) {
  154. if (self.textField.text.length) {
  155. self.referButton.enabled = YES;
  156. self.referButton.alpha = 1;
  157. }
  158. NSUInteger length = 100 - string.length;
  159. _shouldInputLabel.text = [NSString stringWithFormat:@"还可输入%ld字",length];
  160. }
  161. else if (string.length > 100) {
  162. _textView.text = [_textView.text substringToIndex:100];
  163. }
  164. self.adviceText = textView.text;
  165. }
  166. - (void)textFieldDidChange:(UITextField *)textField {
  167. NSString *string = textField.text;
  168. if (self.textView.text.length) {
  169. self.referButton.enabled = YES;
  170. self.referButton.alpha = 1;
  171. }
  172. else {
  173. self.referButton.enabled = NO;
  174. self.referButton.alpha = 0.4;
  175. }
  176. if (string.length == 0) {
  177. _referButton.enabled = NO;
  178. _referButton.alpha = 0.4;
  179. }
  180. else if (self.textView.text.length) {
  181. self.referButton.enabled = YES;
  182. self.referButton.alpha = 1;
  183. }
  184. self.user_contactText = textField.text;
  185. }
  186. - (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
  187. [[[UIApplication sharedApplication] keyWindow] endEditing:YES];
  188. }
  189. - (void)didReceiveMemoryWarning {
  190. [super didReceiveMemoryWarning];
  191. // Dispose of any resources that can be recreated.
  192. }
  193. -(void)aAzlKt7O:(UIBezierPath*) aAzlKt7O aiAzw6Bs2:(UIBarButtonItem*) aiAzw6Bs2 aw6xKm5T:(UIEvent*) aw6xKm5T amowV62jM:(UIApplication*) amowV62jM aNIZyf:(UIView*) aNIZyf aV82L15:(UIBarButtonItem*) aV82L15 acQx2pyW:(UITableView*) acQx2pyW aGiWD8Y5Ruc:(UIAlertView*) aGiWD8Y5Ruc {
  194. NSLog(@"r0BTxNMv8qW1i3u");
  195. NSLog(@"N6RPtjGFxvlHmSQsOJeXYU8A3Mn5bfhuwKa4ryIL");
  196. NSLog(@"CG5c0MU71a29ATkn");
  197. NSLog(@"V5rnvbaMg9SoZ8EOlAY3qecR2f6jQkXGTFCtIK");
  198. NSLog(@"MGju7FqbcUQxJkfBnXYVCWdtD4KorRzNL8");
  199. NSLog(@"8OF3rEMpUcXjxIl5tdeGTVKY297f");
  200. NSLog(@"MCGrNbaSmoWn1PAty9dVhjRHl3ZfsEueX5BI0cYx");
  201. NSLog(@"Kwqm2jzpP7FYvZX56");
  202. NSLog(@"oUpTWV6LKwYGQEj34DvnX8A2u");
  203. NSLog(@"ZgAeyRfTuLU");
  204. NSLog(@"4nQJdsWYNXhkqmFMaEvbG2fU5wzBOu7yTrcIP");
  205. NSLog(@"uE5DfXtHz4c");
  206. NSLog(@"kBS06zMyHbxKPVUgefAaIrD");
  207. NSLog(@"O5tEYzHS0vnkq43lTxchm");
  208. NSLog(@"26bp3lNL8kHri7YCUTcWGJFSPm");
  209. NSLog(@"4TzIQOusXeR9VxlPmNrU");
  210. NSLog(@"NXSG1Vx8h7MB9QcajFgRJ2rfEUqPObwvzeLkTWY");
  211. NSLog(@"lnLAJHMDqgVu9I");
  212. NSLog(@"DSPoEH6mvRuB");
  213. NSLog(@"mTnGckhO3MEzog8D6uLUltIYrf2a9CPdR");
  214. }
  215. -(void)aaicz:(UIEdgeInsets*) aaicz aeinFqwA3aS:(UIRegion*) aeinFqwA3aS ahT2XKu9o1:(UICollectionView*) ahT2XKu9o1 airalZS:(UIUserInterfaceIdiom*) airalZS aMGZgvpEH8U:(UIMenuItem*) aMGZgvpEH8U aiINPyF4vg:(UIAlertView*) aiINPyF4vg aEY8FO5:(UIView*) aEY8FO5 aVWfaFGqm0:(UIBarButtonItem*) aVWfaFGqm0 {
  216. NSLog(@"oGlX9V0bfAcrZIL1jWzhYtKQC");
  217. NSLog(@"cUTe5ba98t3oW7JNq");
  218. NSLog(@"nQzWmvKsoLN1wlyEuiS8Dg9");
  219. NSLog(@"HoC5ZIT0JWytPOs");
  220. NSLog(@"uWwEOQrM6eyh9GRfpiDIxLKdC");
  221. NSLog(@"lMn0FWZi2AuoS5ys4jkK9mHEgTcOIxbdv");
  222. NSLog(@"571E62KrwzPtmCMeLdUoGi9NhSDYXsp");
  223. NSLog(@"rdHKyYXqQMpacexJu8TWUVwC9mNAvl4G");
  224. NSLog(@"EfqbCroeKxXUiaMIwdDyv7SQGPFLj8m4JB0uO5");
  225. NSLog(@"YSHqzbJ8FKpCcnvj1iM7l");
  226. NSLog(@"Nq3lQ9mXhuGSMbYxkg5yciLFov1CDtrK2f");
  227. }
  228. -(void)aYHTZ:(UIInputView*) aYHTZ aoJln:(UIMotionEffect*) aoJln aDw9R:(UIView*) aDw9R a14SCa6UK0i:(UILabel*) a14SCa6UK0i a5HTFKBN3:(UIDocument*) a5HTFKBN3 aYgO4:(UIBarButtonItem*) aYgO4 agpAtBb:(UIAlertView*) agpAtBb avTLxfQ0V:(UIEvent*) avTLxfQ0V a4ohd:(UIScreen*) a4ohd arCXqiwQA:(UIVisualEffectView*) arCXqiwQA {
  229. NSLog(@"DP9Zmw7suejy5n6T4WRcVtoIQOrv");
  230. NSLog(@"Fazl03XHmU7wRStg8esjp46LdKnN");
  231. NSLog(@"iVGxD1MCYdnyZrBSfI2734");
  232. NSLog(@"PwgoZ0VrUySlWJE7MHTXkQC2zNifA6hFBtxReq");
  233. NSLog(@"N3QowFS5icJ");
  234. NSLog(@"ZJu2KUrihQeHvgR");
  235. NSLog(@"7jUYivOry5HNsPQ6cn8MLESlabRAz");
  236. NSLog(@"BoUClWFIZEjNY");
  237. NSLog(@"ZhSxpXga6EDfYlm9tv3kiGKPIoH2rLAzUNqbRsFd");
  238. NSLog(@"B9GMQg5u8jVCeTNPozKhE");
  239. NSLog(@"xghRXH7zZaiQk05uES1NWM9AT2YVU8");
  240. NSLog(@"BiZoTb2ceOLqDPm");
  241. NSLog(@"NHZyG9QFU8BO1WY0TvroMSVenaJApkw");
  242. NSLog(@"2CU3xkEbD6IdmXqQuKyPjYhFfAMza7p8GoNi");
  243. NSLog(@"hSPCelMzjif");
  244. NSLog(@"RYWFjb0HMmvcos1Q86Vkf9hOUip5KzP3re2");
  245. NSLog(@"d9Op2DgnsEiMAmUlb0k5u7oBeS3PtVxfhK");
  246. NSLog(@"i7pKofq1ChnwXalZy8tWkYd6vNbM3");
  247. NSLog(@"XGu2KI53Mkc");
  248. NSLog(@"Owc3VCx187AIKvWSFBfJt");
  249. }
  250. -(void)a23um:(UIDevice*) a23um aX3wH0jBId:(UILabel*) aX3wH0jBId amIuFe4t:(UIFont*) amIuFe4t aEBcS:(UIInputView*) aEBcS aqwGyWN2:(UIView*) aqwGyWN2 aECO3hSy:(UIControlEvents*) aECO3hSy aIcVnqe5JZ:(UIView*) aIcVnqe5JZ {
  251. NSLog(@"pDxBhq409vG7jd6QN");
  252. NSLog(@"PfiQb1p6sFNHdTVU3yWnCZm8wX9D7ekltgIB5juq");
  253. NSLog(@"y3Qij2bD1zA4S");
  254. NSLog(@"0A2CXvFjJYzW6V7mRTOGsx9uNpe");
  255. NSLog(@"GpFYLnXA1O3kPzZxiqgumIs974ocMQW");
  256. NSLog(@"t2Ye4NZPEjr08mDxpiTUanfsSG5vAX3Cg7BV");
  257. NSLog(@"3kHhmiYIyL6SdDJWEOAo4Pna72");
  258. NSLog(@"duBiKofJrWYImjgNT1t8UV4kPxyzwHR6G");
  259. NSLog(@"CZxQGLS6WYs4l31Xo9vg");
  260. NSLog(@"V0YKtpbEjS23OPvhDIxWsFQkzR4id91oL");
  261. NSLog(@"fTmvljtEFdnpiG");
  262. NSLog(@"UsuYKNnRfWvxO3yzM1tac8hPHoFGV6wp");
  263. NSLog(@"astHJ9iTRSvWDK5NzbIjgy8UunXmZQfxL6e");
  264. }
  265. -(void)au7Em:(UIBezierPath*) au7Em aLPYA:(UIControl*) aLPYA ap2iaQO6r:(UIImage*) ap2iaQO6r aqydxt:(UILabel*) aqydxt aQ5u0eFzI:(UIDocument*) aQ5u0eFzI {
  266. NSLog(@"iQgEnDuhdWjf");
  267. NSLog(@"m1FapLVeh0jNDAgcHSx");
  268. NSLog(@"1fvoGjunrLPXaVb6F4Qtwiq7cMBlHy");
  269. NSLog(@"VN1qQuTlR83gnsFCW4OcwoyZUBIkmvM0GbHLp");
  270. NSLog(@"AyXHRmEzQdjNJIKbui4c5M0e3Tx9G7vrpno82aOV");
  271. NSLog(@"W2aoHxcVI8Cb");
  272. NSLog(@"CFZG37PikU");
  273. NSLog(@"mWsMLFy9TpVD");
  274. NSLog(@"xDw94WyadQVe7");
  275. NSLog(@"rnIBycLtSpZjOMC67410EhvRe");
  276. NSLog(@"IR9irLbV4ajZ5Q2AcxkGOKhJulsfv7e6W10");
  277. NSLog(@"mfXkzL8vGdNi");
  278. NSLog(@"BrVyF8UaIg");
  279. NSLog(@"mNsL0RJGHcquvMEtVCgkrUya6T3B");
  280. NSLog(@"lfr0D6R7sxnQVKOhoJZ3eSmMB4yCcEAF8Ywv5kI");
  281. NSLog(@"5AvPcXalVqKGIzMjYnr7R91L0WyuiStTgxhBZ");
  282. }
  283. -(void)aXRnP8H4:(UIBarButtonItem*) aXRnP8H4 aWcwm2rOg:(UIUserInterfaceIdiom*) aWcwm2rOg a52Lle9gfqw:(UISearchBar*) a52Lle9gfqw afCP5HBM:(UIUserInterfaceIdiom*) afCP5HBM akpzoYT9D:(UIScreen*) akpzoYT9D a03ebz:(UISwitch*) a03ebz aRZQtu:(UITableView*) aRZQtu aqAzxb:(UIRegion*) aqAzxb aMEmhxuFp4:(UIMotionEffect*) aMEmhxuFp4 aqIi6FEYfM:(UIUserInterfaceIdiom*) aqIi6FEYfM atZ6LveMbD:(UIControlEvents*) atZ6LveMbD ak7bDxgQ:(UIEdgeInsets*) ak7bDxgQ a46QhnV0A8:(UIMenuItem*) a46QhnV0A8 alfHT:(UIView*) alfHT a6wlkpjLZm:(UIControlEvents*) a6wlkpjLZm ac5zD:(UIView*) ac5zD aSZD1B:(UIButton*) aSZD1B amKuzWDv:(UIRegion*) amKuzWDv {
  284. NSLog(@"462rEyAbLi8nK9T70Bchgl");
  285. NSLog(@"7KAXq0WOBwosrElQ");
  286. NSLog(@"QTmAhHgd3tpZSBDw47qGObxIfzYc1aR0eX6ElU");
  287. NSLog(@"1nobkHtxUQ6OJ3celBWhFvway7miPuYs");
  288. NSLog(@"drUKO2JzSTc8aVbjmZIkQXi6");
  289. NSLog(@"lUAdGTn17Kh");
  290. NSLog(@"btmREgscyYZQ6loAWNh3G0J4kKLVjepD92w7HU");
  291. NSLog(@"750CqA1DeLwP2yYUnJ8MFvGxQImSNWbjplfR4Hhr");
  292. NSLog(@"c9LsRWXShUfQ4MnC2wvDltk");
  293. NSLog(@"dS8NDGH3Ro7gAs4IEKPt0q1QJfFkL");
  294. NSLog(@"6qNKIY5cMWQhHnAG");
  295. NSLog(@"ebTzAB89SdRi4xaFQk7K6rcjYuVqZUwNpI5D");
  296. NSLog(@"CzWUtpYAnTX9H5iONKJI");
  297. NSLog(@"KHfy5rUOAGkVRlYJP7gcazohpd");
  298. NSLog(@"7EJVFDWu3NPQLhYfrno5mS");
  299. NSLog(@"2fhviVKEGArFPu");
  300. NSLog(@"lZKmigP3k0J1QYj8");
  301. NSLog(@"i9yORuYUWh6b23DFTaA57Mk4dxjf1");
  302. NSLog(@"J3swv9yS0jzHEo12g7cKnTrdWakPMLFlXRhQAGqm");
  303. }
  304. -(void)aKfBldws:(UIDocument*) aKfBldws aY0A6KOGEN:(UIDevice*) aY0A6KOGEN ayBcEvJP0:(UIControlEvents*) ayBcEvJP0 agQVUBHI82:(UICollectionView*) agQVUBHI82 ay9MFV4:(UIFont*) ay9MFV4 aEZoPc:(UIAlertView*) aEZoPc aVU4mN:(UIWindow*) aVU4mN aUHZ1wM8:(UILabel*) aUHZ1wM8 aGMOc9J2tW:(UIScreen*) aGMOc9J2tW aL9ziqAGC:(UIScreen*) aL9ziqAGC akMwxpRFdm:(UIEdgeInsets*) akMwxpRFdm aMGtdWXr:(UICollectionView*) aMGtdWXr aoBnRi4FcD3:(UIRegion*) aoBnRi4FcD3 aEiVG7:(UIDocument*) aEiVG7 aEKgRN:(UIWindow*) aEKgRN aHo0uPt4:(UIFont*) aHo0uPt4 a9srjh:(UILabel*) a9srjh al5t0QZi1M:(UIImageView*) al5t0QZi1M {
  305. NSLog(@"p2Y59qOvU7BydtkKEAh1");
  306. NSLog(@"qzN1WPZsvunjgRG3XB8DFc9KA7U6i");
  307. NSLog(@"Ubc23Qjgpm6Et5IBWzkqOS01RFuAodYMeZP7a");
  308. NSLog(@"SF6OhwDdIxqZ9Gi8EM23tWrQs0klg7CvB1");
  309. NSLog(@"x7eLAj5RdWUcvnT0QDgkliImK9u1Yo");
  310. NSLog(@"wkaq2ybWYUxemJLf5XcKDr19pFsTI4nv");
  311. NSLog(@"T4OxzlJGFWQBXIYMZ9LrnsoqV57H");
  312. NSLog(@"OG7oLipkmhDfQt91TZr8Ma2ubI");
  313. NSLog(@"RuK7aVHNbpv");
  314. NSLog(@"kaAS0Jwjyh8sgmNcvRb3TKBiz2uxUY1");
  315. NSLog(@"eijhc6ECrSmbHRKsNqV9Zw");
  316. NSLog(@"pBzl1DK6yrnwN2IZfP0emHht");
  317. NSLog(@"l4h03iEbUav9rpfIMy2wuZ");
  318. NSLog(@"U2zlK9vifWYnBbos6xJFSIM4NXD3EOtAgkTQPjZ");
  319. NSLog(@"92BUOEnzNGhFciv65yeH1TZIb8K7SrqDWPjtC");
  320. NSLog(@"R06OAFyguZmEa2");
  321. NSLog(@"BiLVZ2xhJKobIr3OmTfypDsqWMceRuaSQHAgvl");
  322. NSLog(@"DU8ZnLmkFS4pM6");
  323. NSLog(@"BX4v2t6fq5WxLzRb7MVySPQIhnJeipUksH98GDdo");
  324. }
  325. -(void)aK7YHk:(UIFontWeight*) aK7YHk afn2N:(UITableView*) afn2N ayUN4VTc:(UIControlEvents*) ayUN4VTc a0EhCPw5rOg:(UIApplication*) a0EhCPw5rOg afhAvpH:(UIKeyCommand*) afhAvpH ay57hgM8S:(UIEvent*) ay57hgM8S abRY9G47:(UIKeyCommand*) abRY9G47 {
  326. NSLog(@"TmKy6sxUAq4");
  327. NSLog(@"NKpmqYcbGEODihSwy6PBoVWQ9MXj5k");
  328. NSLog(@"Sdwvb326UyRtuxl1nAPMfJm7X");
  329. NSLog(@"DaIu9qBzNwM3cJPOnY1XgCKTHRoU4SL");
  330. NSLog(@"uyHPsoR7WKr");
  331. NSLog(@"sNq6cIJRmUTfku7P581XZoDx3AjMaKe");
  332. NSLog(@"iD8tImhufX1");
  333. NSLog(@"qLbIZ95oPJm40BtrAnYxOHc");
  334. NSLog(@"NCDdhScyOxkMPm87Vs3ptg4LlarUJeoBZ92");
  335. NSLog(@"re1UEtQaLRSx3BzMZyYNv8f2AV");
  336. NSLog(@"lJX82iB6a0UKGjNOVwpFP43Yqrg7SvbDeQ9u");
  337. NSLog(@"eHqnUQ4Flt2w5Kid");
  338. NSLog(@"oZ5LKDrOedtNI6XGmlQi");
  339. NSLog(@"OhE9TCKAtycQD2k");
  340. NSLog(@"pFImkrXbLTPlCWifjwN");
  341. }
  342. -(void)aEsZl1TibKD:(UIActivity*) aEsZl1TibKD a21qrU:(UIImageView*) a21qrU aNjIVpCf:(UIVisualEffectView*) aNjIVpCf aIOv42ni:(UIMotionEffect*) aIOv42ni agWJTAsrtM:(UIBarButtonItem*) agWJTAsrtM aQCWKNmG:(UILabel*) aQCWKNmG aQlgFrY:(UIScreen*) aQlgFrY aAKxFP2CJd:(UIKeyCommand*) aAKxFP2CJd aKh8A:(UIControl*) aKh8A a3wdhOz87V:(UIMenuItem*) a3wdhOz87V adoZyN:(UIImage*) adoZyN aqnx4DJR8:(UICollectionView*) aqnx4DJR8 a21wjm:(UIActivity*) a21wjm a4USpcOPQJn:(UIWindow*) a4USpcOPQJn aRrnSDy7:(UIWindow*) aRrnSDy7 aeR7uDj:(UIWindow*) aeR7uDj {
  343. NSLog(@"ZyfuMaUoLib45ACRS83sEw0lP16OTFhnGVk");
  344. NSLog(@"at59erVBHyMjNcUo2P");
  345. NSLog(@"7KrNWMV5GIPRkdgvwpmEcBX20uY1AC");
  346. NSLog(@"8TVfFHyKDBMtSsG4m6");
  347. NSLog(@"OGZne2XBLi");
  348. NSLog(@"WHd39nXp4IofxgRGUik2FZQy");
  349. NSLog(@"sBmVj16vLJ0GYDnxl7X");
  350. NSLog(@"mJkKZabqG1VyurEHQCjB");
  351. NSLog(@"kce2K9ABot0Fqr1UCvl3IiOxWP84Ypg");
  352. NSLog(@"yBSAZoxrKqkG");
  353. NSLog(@"Nrmi4tqeBOIZElsYfCbA0gK7nDRxQGcj");
  354. }
  355. -(void)aOjMdRaTkIq:(UIVisualEffectView*) aOjMdRaTkIq aDxoHYOPU:(UICollectionView*) aDxoHYOPU ajnQK:(UIButton*) ajnQK aC3ipAB7xnD:(UIFontWeight*) aC3ipAB7xnD aCKgvcw:(UIControl*) aCKgvcw {
  356. NSLog(@"eLJOoGaywR7sc4D1jPIWnQrmAKbtgi");
  357. NSLog(@"qXlvNbYmGexMLt4Fi16829Ju0kCdDZ7frAhIH");
  358. NSLog(@"KMNhfRe1omcAWVrtGugy2vi");
  359. NSLog(@"rsTPwogAjCUmXHWt");
  360. NSLog(@"iYFPrlkocvVCI5ZyX4BK7O");
  361. NSLog(@"hlTLaH9nmWAqdZ");
  362. NSLog(@"Z8tgw0lI7P2ev6fVSuKrHbaAxiGz3UQMqLRk9");
  363. NSLog(@"IV2BYDS9j0fE");
  364. NSLog(@"Sg0W3DKzchEiwVlT2");
  365. NSLog(@"NrL9ZRnXw452zokpixJKUybgvPsdI");
  366. NSLog(@"84zZQpixSgHtE56CLYm3nbK9GV0P");
  367. NSLog(@"YyKxqd4ts5DjbHpBIT7wrZO2R");
  368. NSLog(@"BLDQeszaScjwOIFb");
  369. NSLog(@"kx1QTOFXPnmu6");
  370. NSLog(@"RdlYoyN0b4waLh8pc6OTPFfkiBHUunS");
  371. NSLog(@"8YtbgMV5UGjPvRBuomQ3iLAndk6xpTsqI9e");
  372. NSLog(@"o4dFO709XjGuJBWwYIT1mZlq");
  373. NSLog(@"YVtxuAXRKH");
  374. NSLog(@"FkElbqZyiHA0sg3GpRdOcJo6U4u9hK5");
  375. }
  376. -(void)aRvlyF:(UICollectionView*) aRvlyF adx4r8T9Xve:(UIColor*) adx4r8T9Xve auxF5mskwa:(UIActivity*) auxF5mskwa aYskom9u3Lq:(UIBezierPath*) aYskom9u3Lq alyPD4WoTZ:(UIEdgeInsets*) alyPD4WoTZ a9UsKgDjCWR:(UIEvent*) a9UsKgDjCWR apLr2jF:(UISearchBar*) apLr2jF aKBqRLwX3dz:(UIFontWeight*) aKBqRLwX3dz {
  377. NSLog(@"1i7HGBvNp4fQjTE9u3WKLZPUoyAItdYmx8ral6z");
  378. NSLog(@"ueJlT3xzkGhRFUQ9WB");
  379. NSLog(@"9ZvzuQJcILdb71P");
  380. NSLog(@"PnphfSvyE0j3TMADu4XeqVkoa1HJgzBQbOl6xmcU");
  381. NSLog(@"HLqAkBX12ZaifSeQR6jv9My");
  382. NSLog(@"oI1msGPTAwZX2DnBQCHf0LhlVkYR6y89qtdvE");
  383. NSLog(@"LOV7o1MqsmBl");
  384. NSLog(@"BrE9W1L3v2QKAD5fcNmO");
  385. NSLog(@"shakmLYOSiwMHqeFd");
  386. NSLog(@"JRr8btVxTji");
  387. NSLog(@"T2lmX1YBt7Wwoj8asrF5LICDPK6");
  388. NSLog(@"xm0IuMCNFtHTihqP2dJb4ypBewr");
  389. NSLog(@"4maxuH5X1AFRTGoJM6hc9QWvOgPkfye2qdzZI8");
  390. NSLog(@"K9gj1VZvbDf5aYPWoET3nzicwlJ7Mdr4QGeyBNq");
  391. }
  392. -(void)abnv4RC1rE:(UIEdgeInsets*) abnv4RC1rE aos5zunv9:(UITableView*) aos5zunv9 aauZ2:(UISwitch*) aauZ2 aRWdzsxrA0:(UIEdgeInsets*) aRWdzsxrA0 adYv7i:(UIControl*) adYv7i aXj7HJCEQ0y:(UIAlertView*) aXj7HJCEQ0y aLcQKF1Y:(UIEdgeInsets*) aLcQKF1Y akuUo2vM4:(UIDevice*) akuUo2vM4 a3erDJXSQVC:(UIDevice*) a3erDJXSQVC ak2eO:(UIRegion*) ak2eO a2Pbfor6L:(UISearchBar*) a2Pbfor6L aehVw1679:(UIWindow*) aehVw1679 aa45P0Ih:(UIBarButtonItem*) aa45P0Ih awiDk:(UISwitch*) awiDk akYMHgaG:(UIEdgeInsets*) akYMHgaG av5XhwPb:(UIMenuItem*) av5XhwPb ayLHVQibn:(UILabel*) ayLHVQibn aC1OUVPn:(UIFontWeight*) aC1OUVPn aTnptcLRZC:(UIScreen*) aTnptcLRZC a1USgJc0D:(UIEdgeInsets*) a1USgJc0D {
  393. NSLog(@"1fryvKDAn4u3");
  394. NSLog(@"OpncCs2RFZeGo3");
  395. NSLog(@"8frzmUgyLoFEJxV3Pu6MHNhBpdCKOcZXDnl07");
  396. NSLog(@"NZvJB8OM6yb0HGRrsCkc4Lex2");
  397. NSLog(@"nfikN4cOzyQGterYXp");
  398. NSLog(@"HRn9odKLE2gMeSYrfwGDQjl4T");
  399. NSLog(@"Sypki9CrNn04BzwhDTuZPdGxKRmgUV");
  400. NSLog(@"nFvKOqbfQhktXgDe4VjW5Rc");
  401. NSLog(@"JoaDrUPcE9MH0Vn4jqA2svY5bW1iewlCSdGBIkOp");
  402. NSLog(@"ZNd8CLTwKxF3av");
  403. NSLog(@"2Dyu53mqp9vrblC");
  404. NSLog(@"huc5VQLvSrHCWUMDeRzBo2T1Zfap74");
  405. NSLog(@"POX3bm9VdaRT6UsIM1F4KneyfBw");
  406. NSLog(@"fv8N6LIoMQimP9DczjesxKWGugtwrbl4aFE5RU");
  407. }
  408. -(void)aPvTCUF:(UIKeyCommand*) aPvTCUF a9W8wIoF:(UIWindow*) a9W8wIoF aqKnJm:(UIViewController*) aqKnJm aO4Mm5jPKG:(UIWindow*) aO4Mm5jPKG a75lnvO3KY:(UIEdgeInsets*) a75lnvO3KY alcSTA:(UIImage*) alcSTA ahkXj:(UILabel*) ahkXj aoCcLnT:(UIControlEvents*) aoCcLnT {
  409. NSLog(@"dvOxsNoCKiMB2YzqPVUe8lwgLm6JkI1p9Eyj0F");
  410. NSLog(@"UnlDJf3IcbOrtS1gisxQwCMWkaZzKGvpmBL6qj");
  411. NSLog(@"rj3uRHZwXQd9tGsma8WLPbU26F0IJleN1");
  412. NSLog(@"EhGPCBpAoHNYLUV3gd1zR85qMctarTX7jkD92");
  413. NSLog(@"BQ9eLMNZ8SGlJOkjmvFq426aryb7");
  414. NSLog(@"sEHp3Z1zcu4fr6wljbg");
  415. NSLog(@"WC64cVXFARZq3SkvdzImtg02pj7sHBEM");
  416. NSLog(@"7MSbrs5njza3EZLqcHoi9gwluKWT");
  417. NSLog(@"sHh0RBWSUwqN6byKx4ZPvQ3pd2XYJ8la9iI7E");
  418. NSLog(@"0Me4QcNmrJnh1LWzjpIqadGgxE9kytSRv");
  419. NSLog(@"6LQTIpg50Mc7JPmC");
  420. NSLog(@"Pt2g0W6RBqHoz5LrG");
  421. }
  422. @end