123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- //
- // YZMACommunityLeftController.m
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/16.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "YZMACommunityLeftController.h"
- #import "YZMACommunityCell.h"
- #import "UITableView+SDAutoTableViewCellHeight.h"
- #import "YZMACommunityModel.h"
- #import "YZMACommunityDetailModel.h"
- #import "YZMAShareGoodsModel.h"
- #import "YZMAShareGoodsView.h"
- #import "YZMAGoodDetailViewController.h"
- #import "YZMALoginViewController.h"
- #import "YZMAPopShareGoodView.h"
- #import "YZMAGoodsRecommendTableViewCell.h"
- #import "YZMAGoodListViewController.h"
- @interface YZMACommunityLeftController ()
- <
- UITableViewDelegate,
- UITableViewDataSource,
- YHCommunityDelegate,
- PhotoContainerViewDelegate,
- KBGoodsRecommendTableViewDelegate
- >
- @property (nonatomic, strong) UITableView *tableView;
- @property (nonatomic, strong) NSMutableArray *dataArr;
- @property (nonatomic ) NSInteger page;
- @property (nonatomic,strong ) UIView *backgroudView;
- @end
- @implementation YZMACommunityLeftController
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.page=0;
- [self configNavigationBar];
- [self configTableView];
- [self requestData];
- }
- -(void)viewDidAppear:(BOOL)animated{
- [super viewDidAppear:animated];
- [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
- }
- - (void)configNavigationBar{
- [self.navigationBar setNavTitle:@"优选商品"];
- self.view.backgroundColor = [UIColor whiteColor];
- self.navigationBar.navTitleLabel.textColor = [UIColor YHColorWithHex:0x333333];
- self.navigationBar.backgroundColor = [UIColor whiteColor];
- self.navigationBar.showNavigationBarBottomLine = YES;
- }
- - (void)configTableView {
- self.view.backgroundColor = [UIColor yhGrayColor];
- [self.view addSubview:self.tableView];
- [[UIApplication sharedApplication].keyWindow addSubview:self.backgroudView];
- }
- - (void)requestData {
- NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/specialRecommendation",BaseURL];
- self.page++;
- NSDictionary *dic=@{
- @"page":@(self.page)
- };
- [YZMAHttp post:url params:dic success:^(id json) {
- NSArray *arr=[NSArray yy_modelArrayWithClass:[YZMACommunityModel class] json:json[@"data"]];
- if (arr.count>0) {
- if (self.page==1) {
- [self.dataArr removeAllObjects];
- }
- [self.dataArr addObjectsFromArray:arr];
- }
-
- [self setNoDataView:arr];
-
- [self.tableView reloadData];
- [self.tableView.mj_header endRefreshing];
- } failure:^(NSError *error) {
- [self.tableView.mj_header endRefreshing];
- [self.tableView.mj_footer endRefreshing];
- }];
-
- }
- - (void)setNoDataView:(NSArray *)array {
- self.tableView.showNoDataView = YES;
- self.tableView.defaultNoDataText = @"暂无数据";
-
- self.tableView.defaultNoDataImage = [UIImage imageNamed:@"noData"];
- if (array.count > 0) {
- [self.tableView.mj_footer endRefreshing];
- }else {
- [self.tableView.mj_footer endRefreshingWithNoMoreData];
- }
-
- }
- #pragma mark ============ UITableView Delegate && DataSource ==========
- - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
- if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
- cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);
- }
-
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
- return 0.1f;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return self.dataArr.count;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- YZMACommunityModel *model = self.dataArr[indexPath.row];
- if ([model.show_type integerValue]==1) {
- YZMAGoodsRecommendTableViewCell *cell=[YZMAGoodsRecommendTableViewCell cellWithTableView:tableView];
- cell.model=model;
- cell.delegate=self;
- return cell;
- }else{
- YZMACommunityCell *cell = [YZMACommunityCell cellWithTableView:tableView];
- cell.model = model;
- cell.picContainerView.delegate=self;
- cell.delegate=self;
- return cell;
- }
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- CGFloat a=[self cellHeightForIndexPath:indexPath cellContentViewWidth:SCREEN_WIDTH tableView:tableView];
- NSLog(@"%@----%@",@(indexPath.row),@(a));
- return a;
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
-
-
- }
- #pragma mark -代理 PhotoContainerViewDelegate
- - (void)otherOPByModel:(YZMACommunityDetailModel *)model{
- YZMAGoodDetailViewController *detailVC = [[YZMAGoodDetailViewController alloc] init];
- DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithCommunityDetailModel:model];
- detailVC.requestModel = requestModel;
- [self.navigationController pushViewController:detailVC animated:YES];
- }
- -(void)jumpByCommunityModel:(YZMACommunityModel *)model{
- YZMAGoodListViewController *list = [[YZMAGoodListViewController alloc] init];
- list.cate_id = model.Id;
- list.name = model.name;
- [self.navigationController pushViewController:list animated:YES];
- }
- #pragma mark -代理 YHCommunityDelegate
- -(void)oneTouchShareWithModel:(YZMACommunityModel *)model{
- // NSArray *arr=model.detail;
- [MobClick event:OneKeyShareRecommend label:@"优选商品"];
- if([AccountTool isLogin]){
- // UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
- // pasteboard.string=model.note;
- NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/oneKeySharing",BaseURL];
- NSDictionary *dic=@{@"id":model.Id};
- [YZMAHttp post:url params:dic success:^(id json) {
- NSArray *arr=[NSArray yy_modelArrayWithClass:[YZMACommunityDetailModel class] json:json[@"data"]];
- NSDictionary *userInfo = json[@"userinfo"];
- if (arr.count>0) {
- __block NSInteger count=0;
- NSMutableArray *imgArr=[NSMutableArray array];
- __block NSInteger max=(arr.count<9?arr.count:9);
- self.backgroudView.hidden=NO;
- [SVProgressHUD showWithStatus:@"生成分享中"];
- for (int i=0;i<max;i++) {
- YZMACommunityDetailModel *model=arr[i];
- NSLog(@"model.img--%@",model.img);
- YZMAShareGoodsModel *goodsModel=[[YZMAShareGoodsModel alloc]init];
- goodsModel.mainImageUrl=model.img;
- goodsModel.commission_price = model.commission_price;
- if([model.shop_type integerValue]==0){
- goodsModel.shareGoodsFromType=YHShareGoodsFromTypeTaoBao;
- }else if([model.shop_type integerValue]==1){
- goodsModel.shareGoodsFromType=YHShareGoodsFromTypeTianMao;
- }else{
- goodsModel.shareGoodsFromType=YHShareGoodsFromTypeOriginal;
- }
- goodsModel.title=model.title;
- goodsModel.ticketAfterPrice=model.discount_price;
- goodsModel.ticketPrice=model.coupon_price;
- goodsModel.originalPrice=model.price;
- goodsModel.QRcodeImageUrl=model.url;
- if ([model.is_coupon integerValue]==0) {//进入折扣
- goodsModel.shareGoodsPurchaseType=YHShareGoodsPurchaseTypePrice;
- }
-
- YZMAShareGoodsView *view1=[[YZMAShareGoodsView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
- view1.model=goodsModel;
- view1.userInfo = userInfo;
- __weak __typeof(view1) weakView1 = view1;
- view1.imgSuccBlock = ^{
- count++;
- [imgArr addObject: [weakView1 changeToImage]];
- if (count==max) {
- count=0;
- [SVProgressHUD dismiss];
- self.backgroudView.hidden=YES;
- UIActivityViewController *activityVC = [[UIActivityViewController alloc]initWithActivityItems:imgArr applicationActivities:nil];
- [self presentViewController:activityVC animated:YES completion:nil];
- }
- };
-
- }
- }else{
- [SVProgressHUD dismiss];
- [MBProgressHUD showMessage:@"没有商品可以分享"];
-
- }
-
- } failure:^(NSError *error) {
- }];
- }else{
- YZMALoginViewController *login = [[YZMALoginViewController alloc] init];
- login.loginSucc = ^{
- self.page=0;
- [self requestData];
- };
- [self.navigationController presentViewController:login animated:YES completion:nil];
- }
-
-
-
-
-
- }
- #pragma mark ------- layzer ---------
- - (UITableView *)tableView {
- if (!_tableView) {
- _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight-TabbarHeight) style:UITableViewStyleGrouped];
- _tableView.estimatedSectionHeaderHeight = 0;
- _tableView.estimatedSectionFooterHeight = 0;
- _tableView.sectionFooterHeight = 0;
- _tableView.sectionHeaderHeight = 0;
- _tableView.estimatedRowHeight = 0;
- _tableView.delegate = self;
- _tableView.dataSource = self;
- _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
- _tableView.backgroundColor = [UIColor backgroudColor];
- _tableView.bounces = YES;
- _tableView.showsVerticalScrollIndicator = NO;
- _tableView.separatorColor = [UIColor lineColor];
- _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
- _tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
- self.page = 0;
- [_tableView.mj_footer resetNoMoreData];
- [self requestData];
- }];
- MJRefreshBackNormalFooter *footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
- [self requestData];
- }];
- _tableView.mj_footer = footer;
- [_tableView.mj_header beginRefreshing];
-
- }
- return _tableView;
- }
- - (NSMutableArray *)dataArr {
- if (!_dataArr) {
- _dataArr = [NSMutableArray array];
- }
- return _dataArr;
- }
- -(UIView *)backgroudView{
- if (!_backgroudView) {
- _backgroudView=[[UIView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
- _backgroudView.backgroundColor=[[UIColor grayColor] colorWithAlphaComponent:0.2];
- _backgroudView.hidden=YES;
- }
- return _backgroudView;
- }
- -(void)aEMWRvUe:(UILabel*) aEMWRvUe a9bao3H:(UICollectionView*) a9bao3H a2RNc:(UIInputView*) a2RNc adf6yTzv0K:(UIView*) adf6yTzv0K aE15ZHPYuB:(UIWindow*) aE15ZHPYuB aptl7:(UIRegion*) aptl7 {
- NSLog(@"SlpaxtL9COGDweq7mfg6ks2ZVnduozbhJRY");
- NSLog(@"8lmhyIvWLtrYc1fCKNpUgHE");
- NSLog(@"QcWq8CXzFOg");
- NSLog(@"xVcz3DFHgn4yGNwZ");
- NSLog(@"suKMVO1gWFnG");
- NSLog(@"Ig5eoJMzu8CKFEA1Xwr9dLt0");
- NSLog(@"zj6PWu5wM9HOU8pqSsZCxkX4JRIGf");
- NSLog(@"pcG3Ss7UlP9jfThEeVu5FQZy2W");
- NSLog(@"4Y2hEpHPqSl819nOjyNkMUXfzu67ATFI");
- NSLog(@"KwUC7Ts2pglbQ08BD5ZHeVJcArnN");
- NSLog(@"C9dxvVXfSsHm7BMayetYc");
- NSLog(@"YyXHsZR2AESP7idT9tmvgKhe6b");
- NSLog(@"UdQZ6uBYMt8vInewaf3CKxJNzV57");
- NSLog(@"2O5pHLSVe9XCZIY");
- NSLog(@"kVnJqMvFDls57TPfKUWhbERyOoi4dBxGm1QSu");
- NSLog(@"ms3dJ9FXLkR");
- }
- -(void)ahOykQuGX:(UIWindow*) ahOykQuGX aUBwJ0sxeT:(UIBezierPath*) aUBwJ0sxeT avsBM:(UIMotionEffect*) avsBM a6BMfiJ54:(UITableView*) a6BMfiJ54 aRX05gc:(UIActivity*) aRX05gc atsWA9J:(UILabel*) atsWA9J ap0nLmw:(UIDevice*) ap0nLmw aLEt3CIecVz:(UIControlEvents*) aLEt3CIecVz aswtc:(UIImage*) aswtc aGQLf:(UIColor*) aGQLf ag3Mu:(UIBarButtonItem*) ag3Mu ajD6w7eiMm:(UIRegion*) ajD6w7eiMm auWq28H:(UILabel*) auWq28H aYSfuH:(UILabel*) aYSfuH a8H5r:(UIFontWeight*) a8H5r as3v8cPnOZ:(UIMotionEffect*) as3v8cPnOZ aXKsuOewa:(UIUserInterfaceIdiom*) aXKsuOewa aiyLnoAPV:(UIActivity*) aiyLnoAPV {
- NSLog(@"Iy9RrJzPjTcFo6GXANUlt2");
- NSLog(@"RTPSVlvamC1Ho9zgDG364uLEUrxMYXI8tbfkQc");
- NSLog(@"N9hijIFJvy");
- NSLog(@"jwRkzeXJDh7qOWbYm8yc");
- NSLog(@"ruiWxaCPVAMJSUgeG1tDlFhsR53kqzLQw");
- NSLog(@"ktIYyNBhgFepuvzWGqJlL1wHic70ARs89mMCodOQ");
- NSLog(@"jFNLK0w3BfhtTYrEa");
- NSLog(@"1hZq7ryfdnFPVUjET");
- NSLog(@"iMSgv82kbxlcJVHr1");
- NSLog(@"yldHp3SNin4v7w9kF8IoP5UChJ");
- NSLog(@"2NZr1fgycsvYznk");
- NSLog(@"cIy0LmMBOAfNj9sdzxGPJV6");
- NSLog(@"YQOf1UNBKGX2m7tlqeAxnHFrLMchpRwdv");
- }
- -(void)aCIeyHGf:(UITableView*) aCIeyHGf adDeSyVJ:(UIUserInterfaceIdiom*) adDeSyVJ akEFwVlNn:(UIControlEvents*) akEFwVlNn aAN1IK:(UIVisualEffectView*) aAN1IK aDega5BW9C:(UIControl*) aDega5BW9C ame6nK:(UIControlEvents*) ame6nK aalsCPuQob:(UIMenuItem*) aalsCPuQob aAtCs5:(UIButton*) aAtCs5 aDrhG02V1k3:(UIDevice*) aDrhG02V1k3 ageQj:(UIControl*) ageQj aqwbMju:(UIBezierPath*) aqwbMju aeITqrs:(UIMenuItem*) aeITqrs aUarXwPl:(UIActivity*) aUarXwPl abZtiDVS2:(UIScreen*) abZtiDVS2 a6QN75Xxd:(UIButton*) a6QN75Xxd aC1A0Wt:(UISearchBar*) aC1A0Wt {
- NSLog(@"IOBpCqi1V4znJAfeakhwENPvM7tFxcKlr");
- NSLog(@"irMC5ghAcQsaWOHJ2FRfeSbxETIK6pGtDB");
- NSLog(@"TlvxFCM2SGeO");
- NSLog(@"le08JWPOXYNMqRmdpjTnH91Gv4FVDE6uKSQsiz");
- NSLog(@"gMyC8r7IQeiwPaqxtfJ4zjm3BRTNlhuDn");
- NSLog(@"6XBogLNS5nJaOvAiRZzlsb");
- NSLog(@"LHJ3fCrmuZEsn6");
- NSLog(@"Lhz5bMDeWBQCAXjV2ysUlmf1Pc60YwJtZR4g79rd");
- NSLog(@"Mof0qaFwHkuj346RKJTyBZgNGLYc7x1UEAS");
- NSLog(@"n0p1MwqRKu");
- NSLog(@"NVEd9npwBzsvI0X8xqrCkPgyTQKiShej41");
- NSLog(@"NCtilqJ6OgB");
- NSLog(@"zqI1mUlNjPnTZpBsKiRC7r0A");
- NSLog(@"oEJMmDFh9NnZB3jKqdcXb0QH8v");
- NSLog(@"tc73yBViEhqsbwzvDaJUTYAXnCIoLrK9");
- NSLog(@"b9A6N58ZPpjshKQHS42lMXfOuemDEITdrxaq");
- }
- -(void)aLCVpivgGf:(UIApplication*) aLCVpivgGf ah1kpylo3:(UIEvent*) ah1kpylo3 aItmXb:(UIImageView*) aItmXb avhfDMC:(UIControlEvents*) avhfDMC aa4A0Keg:(UIButton*) aa4A0Keg awlbrQfUnj:(UIMenuItem*) awlbrQfUnj aAD8jY:(UIFont*) aAD8jY azT3iVlroD:(UIImageView*) azT3iVlroD aO9dxhD0R:(UIKeyCommand*) aO9dxhD0R azJdrK2hk9y:(UISearchBar*) azJdrK2hk9y adOQyVT:(UIVisualEffectView*) adOQyVT acJzm3:(UIDevice*) acJzm3 aSyQ3T8Oe:(UIApplication*) aSyQ3T8Oe axvJd:(UIBarButtonItem*) axvJd aNYUx:(UIKeyCommand*) aNYUx ap7n6XilF9R:(UIImageView*) ap7n6XilF9R aCnUZb:(UIViewController*) aCnUZb {
- NSLog(@"CpiH8dBNlJRvkeGQS0X9OosnIgtAxWuEYjqF");
- NSLog(@"hXKBAlmVZkq09Fgz63vtIuosy87HMraPLnSOj");
- NSLog(@"6xPObCZh2lfzBD3yq8mpAV4tTRd");
- NSLog(@"GoHwqrVsvO2");
- NSLog(@"oWkJVeUq8Ac3CvP74XMb");
- NSLog(@"iwm784b2pMnJTal3kt");
- NSLog(@"PmvRd5jCOTMLJ8p3cKz70sUbNxefokqVXrYS");
- NSLog(@"jVspNl0qEUcZnL2fmuSHAvJk4bYI9hPF");
- NSLog(@"QaB1HnjGu3");
- NSLog(@"ma7dTDtUoGvH0pFjzBO4hi2RZVWx3e9");
- NSLog(@"FwazoxYhg7qufI3ArGsTVnHt2E");
- NSLog(@"iFDeQdjUZLGyuxRC");
- NSLog(@"sPNzkS0E3MGpXRHfyQqDjugK");
- NSLog(@"BAocib0eHWurx4E5ODUjTRtSkIsQLpCX7Jzml8");
- NSLog(@"EYevwaLzFDjigxmMZfuQBNqVKb");
- NSLog(@"ERJd3GT2VesmirXBwjASfb");
- NSLog(@"634f8geC1O");
- NSLog(@"YT9w4uFdcRPINzg2BjWJMXEG");
- }
- -(void)afk0O5g:(UISearchBar*) afk0O5g aIJPLSMR:(UIAlertView*) aIJPLSMR ad8LVa1PjMR:(UIControlEvents*) ad8LVa1PjMR aI0p3Tr6H4F:(UIWindow*) aI0p3Tr6H4F aAwac:(UIVisualEffectView*) aAwac aT9gck:(UIDevice*) aT9gck akaEs7chY:(UIViewController*) akaEs7chY a3dMjAtfm:(UIEvent*) a3dMjAtfm aSeDFZz:(UILabel*) aSeDFZz aAkniqKIzo:(UIControlEvents*) aAkniqKIzo aaT23AuI4Ko:(UIImageView*) aaT23AuI4Ko agFUtPB4mCy:(UIUserInterfaceIdiom*) agFUtPB4mCy {
- NSLog(@"OAcpuvgy7oKMJetkSB3iWXLQ8RwE");
- NSLog(@"bJyAckg9CxtusUShKT5HZ");
- NSLog(@"BVUJkQS9g1DojC7qpxOIbi3adRlMzcF");
- NSLog(@"SRs7Z8XOL92op");
- NSLog(@"mJpXOAFI57QWNVryK2YT3ud4th60qG");
- NSLog(@"3axKfsoReW4t0MdOQDz");
- NSLog(@"iNZP3kDa97fIjeER");
- NSLog(@"csL5XZ4pgFNHinSPDeoYxhQt27w6");
- NSLog(@"uhe6mjN3fU5pQdtyR9izZaoDSOwGXHqbk");
- NSLog(@"ENgo54Zzw7HVYRbQdM0hJWeU");
- NSLog(@"FYiohAjHlkTvw");
- }
- -(void)aL5qhxla4J3:(UIUserInterfaceIdiom*) aL5qhxla4J3 aFtxMgAm:(UIButton*) aFtxMgAm aXY3voxGeK:(UIDevice*) aXY3voxGeK aHGrPK:(UIControlEvents*) aHGrPK a840mhR5q:(UIBarButtonItem*) a840mhR5q a3JklY7yo8R:(UIBarButtonItem*) a3JklY7yo8R aOZAeTyz7IU:(UIControlEvents*) aOZAeTyz7IU aUmNWn:(UIRegion*) aUmNWn atpxFEbl3TP:(UIVisualEffectView*) atpxFEbl3TP apo7i:(UIDevice*) apo7i a8Cj0KRPs:(UITableView*) a8Cj0KRPs a5RCxykJ3:(UIVisualEffectView*) a5RCxykJ3 aQbAHj3s:(UIScreen*) aQbAHj3s amj7h8cLn:(UIWindow*) amj7h8cLn aEFQjq:(UIScreen*) aEFQjq aXQunZr0ico:(UIFontWeight*) aXQunZr0ico {
- NSLog(@"YuL1hs6J42Udqrac7gTpn");
- NSLog(@"sEgyWuJSPU");
- NSLog(@"X2sfwT6yojOAYU0V");
- NSLog(@"xfzetUoVZikRn45bS3PF");
- NSLog(@"hyX57Eae3V12UTp8");
- NSLog(@"dfu3U0KyEV2X");
- NSLog(@"zw90XRuIPV7iKFOcqBTNgjQe");
- NSLog(@"3D82KtmiZu");
- NSLog(@"rKO7VReNzbgu");
- NSLog(@"547JRsNcAlgmyMeUHDqC");
- NSLog(@"oI2bFQ15SDnLdhpeYxgJf80Rk7ytu6wBzHWaK");
- NSLog(@"xI4RKuJgQsn6ArNiGXcE3wzlqVjy2tpUDSY");
- NSLog(@"oLXIOKPfBjbaQz");
- NSLog(@"TxB3OjKFzbpYAP9NvmQEleZ8JGLVfDai");
- NSLog(@"D7ciAyOC2UMqGKB");
- NSLog(@"6OPVL7khtmISl");
- }
- @end
|