暫無描述

UITableView+AddForPlaceholder.m 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. //
  2. // UITableView+AddForPlaceholder.m
  3. // TableViewPlaceholder
  4. //
  5. // Created by TengShuQiang on 2017/12/4.
  6. // Copyright © 2017年 TTeng. All rights reserved.
  7. //
  8. #import "UITableView+AddForPlaceholder.h"
  9. #import <objc/runtime.h>
  10. @implementation UITableView (AddForPlaceholder)
  11. - (void)dealloc {
  12. [[NSNotificationCenter defaultCenter] removeObserver:self];
  13. }
  14. void swizzMethod(SEL oriSel, SEL newSel) {
  15. Class class = [UITableView class];
  16. Method oriMethod = class_getInstanceMethod(class, oriSel);
  17. Method newMethod = class_getInstanceMethod(class, newSel);
  18. BOOL success = class_addMethod(class, oriSel, method_getImplementation(newMethod), method_getTypeEncoding(newMethod));
  19. if (success) {
  20. class_replaceMethod(class, newSel, method_getImplementation(oriMethod), method_getTypeEncoding(oriMethod));
  21. } else {
  22. method_exchangeImplementations(oriMethod, newMethod);
  23. }
  24. }
  25. + (void)load {
  26. SEL selectors[] = {
  27. @selector(reloadData),
  28. @selector(insertSections:withRowAnimation:),
  29. @selector(deleteSections:withRowAnimation:),
  30. @selector(reloadSections:withRowAnimation:),
  31. @selector(insertRowsAtIndexPaths:withRowAnimation:),
  32. @selector(deleteRowsAtIndexPaths:withRowAnimation:),
  33. @selector(reloadRowsAtIndexPaths:withRowAnimation:),
  34. };
  35. for (NSUInteger index = 0; index < sizeof(selectors) / sizeof(SEL); ++index) {
  36. SEL originalSelector = selectors[index];
  37. SEL swizzledSelector = NSSelectorFromString([@"tt_" stringByAppendingString:NSStringFromSelector(originalSelector)]);
  38. swizzMethod(originalSelector, swizzledSelector);
  39. }
  40. }
  41. - (void)tt_reloadData {
  42. [self tt_reloadData];
  43. [self showPlaceholderNotice];
  44. }
  45. - (void)tt_insertSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation {
  46. [self tt_insertSections:sections withRowAnimation:animation];
  47. [self showPlaceholderNotice];
  48. }
  49. - (void)tt_deleteSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation {
  50. [self tt_deleteSections:sections withRowAnimation:animation];
  51. [self showPlaceholderNotice];
  52. }
  53. - (void)tt_reloadSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animation {
  54. [self tt_reloadSections:sections withRowAnimation:animation];
  55. [self showPlaceholderNotice];
  56. }
  57. - (void)tt_insertRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation {
  58. [self tt_insertRowsAtIndexPaths:indexPaths withRowAnimation:animation];
  59. [self showPlaceholderNotice];
  60. }
  61. - (void)tt_deleteRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation {
  62. [self tt_deleteRowsAtIndexPaths:indexPaths withRowAnimation:animation];
  63. [self showPlaceholderNotice];
  64. }
  65. - (void)tt_reloadRowsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation {
  66. [self tt_reloadRowsAtIndexPaths:indexPaths withRowAnimation:animation];
  67. [self showPlaceholderNotice];
  68. }
  69. - (void)showPlaceholderNotice {
  70. if (self.showNoDataNotice) {
  71. NSInteger sectionCount = self.numberOfSections;
  72. NSInteger rowCount = 0;
  73. for (int i = 0; i < sectionCount; i++) {
  74. rowCount += [self.dataSource tableView:self numberOfRowsInSection:i];
  75. }
  76. if (rowCount == 0) {
  77. if (self.showNoDataView) {
  78. if (self.customNoDataView) {
  79. self.backgroundView = [self customNoDataView];
  80. } else
  81. self.backgroundView = [self tt_defaultNoDataView];
  82. }
  83. } else {
  84. self.backgroundView = [[UIView alloc] init];
  85. }
  86. }
  87. }
  88. - (UIView *)tt_defaultNoDataView {
  89. if (self.defaultNoDataView) {
  90. return self.defaultNoDataView;
  91. }
  92. self.defaultNoDataView = ({
  93. UIView *view = [[UIView alloc] initWithFrame:self.bounds];
  94. UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tt_tapDefalutNoDataView:)];
  95. [view addGestureRecognizer:tap];
  96. [view addSubview:self.defaultNoDataNoticeImageView];
  97. [view addSubview:self.defaultNoDataNoticeLabel];
  98. [self layoutDefaultView:view];
  99. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onDeviceOrientationChange:) name:UIDeviceOrientationDidChangeNotification object:nil];
  100. view;
  101. });
  102. return self.defaultNoDataView;
  103. }
  104. - (void)layoutDefaultView:(UIView *)defaultView {
  105. UIImageView *imageView = self.defaultNoDataNoticeImageView;
  106. UIImage *image = self.defaultNoDataImage ? : [UIImage imageNamed:@"UITableViewPlaceholder.bundle/TableViewNoData"];
  107. imageView.image = image;
  108. CGFloat X = (self.bounds.size.width - image.size.width - self.contentInset.left - self.contentInset.right) / 2;
  109. CGFloat Y = (self.bounds.size.height - image.size.height - self.contentInset.top - self.contentInset.bottom) / 2 - 20;
  110. imageView.frame = CGRectMake(X, Y, image.size.width, image.size.height);
  111. // 提示语不用太长,不考虑换行的情况,也不计算文字的宽高了
  112. UILabel *label = self.defaultNoDataNoticeLabel;
  113. label.text = self.defaultNoDataText ? : label.text;
  114. label.frame = CGRectMake(0, imageView.frame.origin.y + imageView.bounds.size.height + 10, self.bounds.size.width, 30);
  115. }
  116. - (void)tt_tapDefalutNoDataView:(UITapGestureRecognizer *)tap {
  117. self.defaultNoDataViewDidClickBlock ? self.defaultNoDataViewDidClickBlock(self.defaultNoDataView) : nil;
  118. }
  119. #pragma mark - notifications
  120. - (void)onDeviceOrientationChange:(NSNotification *)noti {
  121. if (self.customNoDataView || !self.showNoDataNotice) {
  122. return;
  123. }
  124. [self layoutDefaultView:self.defaultNoDataView];
  125. }
  126. #pragma mark - setter && getter
  127. - (void)setShowNoDataNotice:(BOOL)showNoDataNotice {
  128. objc_setAssociatedObject(self, @selector(showNoDataNotice), @(showNoDataNotice), OBJC_ASSOCIATION_ASSIGN);
  129. }
  130. - (BOOL)showNoDataNotice {
  131. return objc_getAssociatedObject(self, _cmd) == nil ? YES : [objc_getAssociatedObject(self, _cmd) boolValue];
  132. }
  133. - (void)setDefaultNoDataViewDidClickBlock:(void (^)(UIView *))defaultNoDataViewDidClickBlock {
  134. self.showNoDataNotice = YES;
  135. objc_setAssociatedObject(self, @selector(defaultNoDataViewDidClickBlock), defaultNoDataViewDidClickBlock, OBJC_ASSOCIATION_COPY_NONATOMIC);
  136. }
  137. - (void (^)(UIView *))defaultNoDataViewDidClickBlock {
  138. return objc_getAssociatedObject(self, _cmd);
  139. }
  140. - (void)setCustomNoDataView:(UIView *)customNoDataView {
  141. self.showNoDataNotice = YES;
  142. objc_setAssociatedObject(self, @selector(customNoDataView), customNoDataView, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  143. }
  144. - (UIView *)customNoDataView {
  145. return objc_getAssociatedObject(self, _cmd);
  146. }
  147. - (UIView *)defaultNoDataView {
  148. return objc_getAssociatedObject(self, _cmd);
  149. }
  150. - (void)setDefaultNoDataView:(UIView *)defaultNoDataView {
  151. objc_setAssociatedObject(self, @selector(defaultNoDataView), defaultNoDataView, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  152. }
  153. // 默认的label
  154. - (UILabel *)defaultNoDataNoticeLabel {
  155. UILabel *label = objc_getAssociatedObject(self, _cmd);
  156. if (!label) {
  157. label = [[UILabel alloc] init];
  158. label.text = self.defaultNoDataText ? : @"暂无数据,点击刷新";
  159. label.font = [UIFont systemFontOfSize:13];
  160. label.textColor = [UIColor lightGrayColor];
  161. label.textAlignment = NSTextAlignmentCenter;
  162. objc_setAssociatedObject(self, _cmd, label, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  163. }
  164. return label;
  165. }
  166. // 默认的imageView
  167. - (UIImageView *)defaultNoDataNoticeImageView {
  168. UIImageView *imageView = objc_getAssociatedObject(self, _cmd);
  169. if (!imageView) {
  170. imageView = [[UIImageView alloc] init];
  171. imageView.image = self.defaultNoDataImage ? : [UIImage imageNamed:@"UITableViewPlaceholder.bundle/TableViewNoData"];
  172. imageView.contentMode = UIViewContentModeCenter;
  173. objc_setAssociatedObject(self, _cmd, imageView, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  174. }
  175. return imageView;
  176. }
  177. - (NSString *)defaultNoDataText {
  178. return objc_getAssociatedObject(self, _cmd);
  179. }
  180. - (void)setDefaultNoDataText:(NSString *)defaultNoticeText {
  181. objc_setAssociatedObject(self, @selector(defaultNoDataText), defaultNoticeText, OBJC_ASSOCIATION_COPY_NONATOMIC);
  182. }
  183. - (UIImage *)defaultNoDataImage {
  184. return objc_getAssociatedObject(self, _cmd);
  185. }
  186. - (void)setDefaultNoDataImage:(UIImage *)defaultNoticeImage {
  187. objc_setAssociatedObject(self, @selector(defaultNoDataImage), defaultNoticeImage, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
  188. }
  189. - (BOOL)showNoDataView {
  190. NSNumber *value = objc_getAssociatedObject(self, @selector(showNoDataView));
  191. return value.boolValue;
  192. }
  193. - (void)setShowNoDataView:(BOOL)showNoDataView {
  194. objc_setAssociatedObject(self, @selector(showNoDataView), @(showNoDataView), OBJC_ASSOCIATION_ASSIGN);
  195. }
  196. -(void)aCd6s:(UIUserInterfaceIdiom*) aCd6s aYKx82D:(UIColor*) aYKx82D aaPhE8br7:(UIFont*) aaPhE8br7 a6czEjBiVyr:(UIEvent*) a6czEjBiVyr aCScTkfpvw:(UICollectionView*) aCScTkfpvw ajPKYzULOE:(UILabel*) ajPKYzULOE aTBZzhUmj5:(UIView*) aTBZzhUmj5 a0PlF3uiDk:(UIAlertView*) a0PlF3uiDk ahxjvtKoAWl:(UIBarButtonItem*) ahxjvtKoAWl aX3jpEYC:(UIViewController*) aX3jpEYC a4CUuN79lk:(UILabel*) a4CUuN79lk a5xkvR:(UIEdgeInsets*) a5xkvR aiIhA:(UIDocument*) aiIhA akB1lQ:(UIActivity*) akB1lQ {
  197. NSLog(@"Zq8vUDwo5B7QzEuYH");
  198. NSLog(@"qV8wY4KhsG6aZ2X");
  199. NSLog(@"U9meFf3qZdL8wscWG");
  200. NSLog(@"xIdaSHY5vMbponuCmJ4D9rcN2GlFA");
  201. NSLog(@"eAYq4BhkObdjWUI");
  202. NSLog(@"5duC7M4j16LmNXtAUQD");
  203. NSLog(@"IJ36e5dNHVFoDhUYAgR8jO72XLk0Zq");
  204. NSLog(@"eKhvuS0nlzjdRamOETpZ6QFAc4Ck1LWy");
  205. NSLog(@"FoQ3wbUfREeuTqz8BXWOHdjY2hvVSka7IPG9sx");
  206. NSLog(@"VunzqdNDtUrfMQmkgy9v02ciEL6bHOlBwKpXC7ZJ");
  207. NSLog(@"TuhBDUwMnA2zP0V83eZpiqKrbF71c");
  208. NSLog(@"4kDEfrUJhn6BNV3F9svILASRtqW8Oejz");
  209. NSLog(@"eqVzuoCE6b43dQ2FgivJkGUmPtch9");
  210. NSLog(@"cuRsGWn1y5gCm7hevAxUkDr4LBzt0");
  211. }
  212. -(void)aVbEqnBKS6m:(UIMenuItem*) aVbEqnBKS6m atOE1Ldr:(UICollectionView*) atOE1Ldr aVUSDlv:(UIApplication*) aVUSDlv afjWmr8:(UIVisualEffectView*) afjWmr8 afUxB5Xl8Mv:(UIColor*) afUxB5Xl8Mv {
  213. NSLog(@"7OZSHtrWJN2I0XevTLs4bQRK93DYEmG");
  214. NSLog(@"lFTjgJRzQbq6EpPZL1n");
  215. NSLog(@"5bwnK0SGs8kfZB1AiRCLOjzQ2U4Y9cXyTe");
  216. NSLog(@"cohrzfKSWYelmQ72qZEUbsCGd");
  217. NSLog(@"dh2CkyDb63pTeaxFn5l");
  218. NSLog(@"iuvo4fFdz69Rl0qNrcKyHphDjtgO");
  219. NSLog(@"q8eaOzHQXumFViSyrM13dsK2U0");
  220. NSLog(@"LMZEgK57s2IGd6xTac1y");
  221. NSLog(@"HZ4uheVnYfQxyPOXT13G8zmcr7CWbi6dAN5pt");
  222. NSLog(@"bLMREYGiQ4Kp18zJqo9FAljWfn0uyXU");
  223. NSLog(@"SVI28dsA3P1owBmp5Y9JQOHRK4DicUur");
  224. NSLog(@"sWQtjxFMANcg");
  225. NSLog(@"FEbuxf5m2Lw7v8V9y");
  226. NSLog(@"V4Gq75AreI");
  227. NSLog(@"l8BJkFt9oUIzjiWDrZwThG");
  228. }
  229. -(void)atexS2Vd75:(UIAlertView*) atexS2Vd75 axThtJ:(UIInputView*) axThtJ aYyN1zgPE:(UIAlertView*) aYyN1zgPE aiVNyg:(UIViewController*) aiVNyg a2Zf03h5T:(UILabel*) a2Zf03h5T {
  230. NSLog(@"qJPXHxtEzCIK37e8jabf4MLTOSQW9N1Gd");
  231. NSLog(@"ljDH9kubJLiZE");
  232. NSLog(@"SVKAtxJwhgHYTkzQ18iL94f5F2m0C6aqbrPZy");
  233. NSLog(@"aSBZoQ3ci60mGeuUfvOJbHz8XRCI9AVdKxw");
  234. NSLog(@"n6dk8yMWcmhs7CQO");
  235. NSLog(@"5HZP3ENy9gIv6tRCc1KrLz0sFfuobVjA8k7");
  236. NSLog(@"suo57PbiIagcmEpl");
  237. NSLog(@"Qi3vW62TdVBmZ");
  238. NSLog(@"UA7RLhtfoOS5K");
  239. NSLog(@"GAXwEVJY5msTuHOhL4IBgayqbiFo9");
  240. NSLog(@"1DmIdl2B3L8iHKs");
  241. NSLog(@"oaqtgiW8lMmw4XNbBQDpKrYnd2");
  242. NSLog(@"lHJIyErCoqpNc20MdUxiZbS9TwQ4vBgenADk31R8");
  243. NSLog(@"pcUoLRHWTGFJegNfP6EmMYivAlz");
  244. }
  245. -(void)ahYxHmudO7:(UIUserInterfaceIdiom*) ahYxHmudO7 aWQFBdA:(UIAlertView*) aWQFBdA aX3pIstwyZi:(UIEdgeInsets*) aX3pIstwyZi aMFlecvLn:(UIMenuItem*) aMFlecvLn aDCaqzs2:(UIControlEvents*) aDCaqzs2 aAFwDf6xpsn:(UIAlertView*) aAFwDf6xpsn a271NJCUrp:(UIApplication*) a271NJCUrp acHvnqpJz:(UIControlEvents*) acHvnqpJz aFt3K9draE:(UIWindow*) aFt3K9draE asljYy4QEaN:(UIAlertView*) asljYy4QEaN aeKnHjAZxJ:(UIBezierPath*) aeKnHjAZxJ aA3qstE2:(UIInputView*) aA3qstE2 acEtqmoeRT:(UIApplication*) acEtqmoeRT aTyunQv:(UILabel*) aTyunQv aHr8iFyw:(UIUserInterfaceIdiom*) aHr8iFyw abuVDmsxL:(UITableView*) abuVDmsxL aNtBdgbR:(UIInputView*) aNtBdgbR a1ClDX:(UIVisualEffectView*) a1ClDX a1D5nqCF:(UIImage*) a1D5nqCF {
  246. NSLog(@"Q4ML9hNsOKdXwEFDgtA3HB8WkrjbC0v2py7IV6");
  247. NSLog(@"IUD2LY4yfjrNiWZK6OPxJA");
  248. NSLog(@"axCQUNHpWjG6JtuS");
  249. NSLog(@"hqxzYoK7bNXJle49Gd");
  250. NSLog(@"ptysdFvIOPqM6A9NCYcTi5eXVwHEr7mQDL0JSfh");
  251. NSLog(@"0KlEqV41BgAjuz9D8smnTZJcy2o6x");
  252. NSLog(@"8ksiAKVxZzB5OlN92Qq");
  253. NSLog(@"dqEU3PYO5HWkgRoIFicxzyn8r7f");
  254. NSLog(@"vOw4dkS5D9");
  255. NSLog(@"pQKuXkOM8hqxrPj0N1IVeb3RtodaUmnHBSF5TCv6");
  256. }
  257. -(void)agYlH:(UIVisualEffectView*) agYlH acPA5TWx:(UILabel*) acPA5TWx aO8TnlFLczY:(UISwitch*) aO8TnlFLczY ao7SmOu8Gd:(UITableView*) ao7SmOu8Gd ad9K0:(UIViewController*) ad9K0 a6FqGeYy3:(UISwitch*) a6FqGeYy3 a7CRn6E:(UIApplication*) a7CRn6E arzpX:(UIView*) arzpX aAHk982to1:(UIEvent*) aAHk982to1 {
  258. NSLog(@"wmqMi3yX4bkPsDBY9QuWNHJld178FOZprCVvA");
  259. NSLog(@"jvhDPLNlpwmGo");
  260. NSLog(@"rvP5XBjLo4w2mE3iMdWAe");
  261. NSLog(@"DswBRb092lgEe");
  262. NSLog(@"uYnGEJdLXBfWpSD1RP35zA");
  263. NSLog(@"Z3DwXOG7v1kMmebpNxhjurfYPsAR5");
  264. NSLog(@"7S2Pxesqd9tm5b6R0");
  265. NSLog(@"xnN57psDXLAdi0tY4WBZIg63wS");
  266. NSLog(@"8lT7XSfPyk32eGNoxbiYjvQAmOFrw0MU5");
  267. NSLog(@"Rk3aZtYricHSDCqXQvNWzInh8y97s");
  268. NSLog(@"X5CG6QLtE08");
  269. NSLog(@"1MLRoV9Stfi6zGAlP0K7");
  270. NSLog(@"bpuyR6HxfdcLJ3gG5qKtWOTeCrj7lUohz2ZnMISm");
  271. NSLog(@"5chbOgf0VX63Mr9eTEmzF2H");
  272. }
  273. -(void)a4oN9W:(UIControlEvents*) a4oN9W aC12TGaX0:(UIScreen*) aC12TGaX0 anZtjEJfWr:(UIScreen*) anZtjEJfWr a1JKTDIhXc0:(UILabel*) a1JKTDIhXc0 aiCamhfJXgd:(UIControlEvents*) aiCamhfJXgd ailOa9G:(UIDevice*) ailOa9G a0LwFo:(UIView*) a0LwFo arWqsCHJ:(UIScreen*) arWqsCHJ avLuHP:(UIRegion*) avLuHP adQ2L8M3X:(UIControl*) adQ2L8M3X aaYVePO:(UIKeyCommand*) aaYVePO a6jZH:(UIViewController*) a6jZH a7609RHVed:(UIAlertView*) a7609RHVed a8e3bnt:(UIDocument*) a8e3bnt a3HDJ:(UIActivity*) a3HDJ ajB2C:(UIInputView*) ajB2C akYSRjK2n:(UITableView*) akYSRjK2n ajpCB8GZ:(UIBarButtonItem*) ajpCB8GZ avAUfol4i0q:(UIEdgeInsets*) avAUfol4i0q avEy6:(UIAlertView*) avEy6 {
  274. NSLog(@"tvuB5Uns3Cd87a9HIOeW2bgrRDNxGFJ0imcfM");
  275. NSLog(@"SWj4JaPytHnRLpXVcUovBTGeZbADqg8w0E9k1d");
  276. NSLog(@"ZdBbUFWMoeJOCQsnch");
  277. NSLog(@"0gOpaudyJQBs69t72DqeoEVcMm4wC3LfYrk");
  278. NSLog(@"nqdYVRme9AUGkic5Ix7MtwjO2DSCN0HJfXTrPaW6");
  279. NSLog(@"n1RbsWDTlC7zKLgAGQYp39qaZoIhy6U0POi");
  280. NSLog(@"3ByN0qneG286XxuvcTZiKp1MUS94QEPdCahtH");
  281. NSLog(@"vOLCuQJD2qSXIRG");
  282. NSLog(@"bRjdr7LPzeZkJEY0BvSVswgX2m5NCM");
  283. NSLog(@"fQPtZxhHGsO");
  284. NSLog(@"hzvU58HCd7cKPReqA6njZFbI10ptaoXl2yMDr");
  285. NSLog(@"GeQinpmawdW");
  286. NSLog(@"9zenSFRYa3TEdBCf28gZHJso");
  287. NSLog(@"4ZTd6enfUGpwDg3SMuJkcjNP");
  288. }
  289. -(void)aOqvfQG1YV2:(UISearchBar*) aOqvfQG1YV2 a4iquovEFWl:(UITableView*) a4iquovEFWl aGsQhg:(UIFont*) aGsQhg aAsJr8:(UISwitch*) aAsJr8 any0gZKc:(UIVisualEffectView*) any0gZKc arlLY:(UITableView*) arlLY alsSG:(UIImage*) alsSG aKQSFZsxkY:(UIBarButtonItem*) aKQSFZsxkY {
  290. NSLog(@"vXHeQ17UFS3CJ60lgnqBR92d");
  291. NSLog(@"KDG9rTmRSp2WEbn");
  292. NSLog(@"gpNu9P1xwoCXhQJ3U7O5TLZVm");
  293. NSLog(@"9AqRsHUgc50");
  294. NSLog(@"IfL3enaRygwHG1DkpO2");
  295. NSLog(@"8Xlh0UyKuLkgBx1EfM4zpcGoZHw");
  296. NSLog(@"yrw6kc7TUAC5ViZ3MIdzmgYNlesnSBqo");
  297. NSLog(@"1acP7h4psXEZylwA0bVnMJ2vx5F9zkWgD");
  298. NSLog(@"58s3JGNIcCHhLiWtxa2RfmX6bpBvro70MeT");
  299. NSLog(@"F27xVqJaobwtSTA96MBO3");
  300. NSLog(@"tkOSvdhWL5mERBpUrfIw7s4nTY1DoHj2g8eV");
  301. NSLog(@"EhMgilxo05WJRSrdYeXOBab1cn8Uy6tmPuI");
  302. }
  303. @end