// // CloudPhotoViewController.m // FunSDKDemo // // Created by XM on 2019/1/3. // Copyright © 2019年 XM. All rights reserved. // #import "CloudPhotoViewController.h" #import "CloudphotoDayVController.h" #import "CloudPhotoConfig.h" #import "ItemTableviewCell.h" #import "Header.h" @interface CloudPhotoViewController () { CloudPhotoConfig * config; UITableView *tableV; NSMutableArray *titleArray; } @end @implementation CloudPhotoViewController - (void)viewDidLoad { [super viewDidLoad]; //初始化tableview数据 [self initDataSource]; [self configSubView]; [self getPictureFileConfig]; } - (void)viewWillDisappear:(BOOL)animated{ //有加载状态、则取消加载 if ([SVProgressHUD isVisible]){ [SVProgressHUD dismiss]; } } #pragma mark - 查询设备图片信息 - (void)getPictureFileConfig { [SVProgressHUD showWithStatus:TS("")]; if (config == nil) { config = [[CloudPhotoConfig alloc] init]; config.delegate = self; } //调用查询这个月内哪些天有图片的接口,可以自己设置日期进行查询 [config getCloudPhotoMonth:[NSDate date]]; } #pragma mark 获取摄像机参数代理回调 - (void)getCloudMonthResult:(NSInteger)result { if (result >= 0) { [SVProgressHUD dismiss]; titleArray =[[config getMonthPictureArray] mutableCopy]; //成功,刷新界面数据 [self.tableV reloadData]; }else{ [MessageUI ShowErrorInt:(int)result]; } } #pragma mark - tableView代理方法 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return titleArray.count; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { ItemTableviewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ItemTableviewCell"]; if (!cell) { cell = [[ItemTableviewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"ItemTableviewCell"]; } //当前月份包含云图片的日期 NSString *dateString = [titleArray objectAtIndex:indexPath.row]; cell.textLabel.text = dateString; cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator; cell.textLabel.numberOfLines = 0; cell.textLabel.lineBreakMode = NSLineBreakByWordWrapping; return cell; } - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { CloudphotoDayVController *cloudDayPhotoVC = [[CloudphotoDayVController alloc] init]; cloudDayPhotoVC.dateStr = [titleArray objectAtIndex:indexPath.row]; [self.navigationController pushViewController:cloudDayPhotoVC animated:YES]; } #pragma mark - 界面和数据初始化 - (void)configSubView { self.title = TS("search_picture_date"); [self.view addSubview:self.tableV]; } - (UITableView *)tableV { if (!tableV) { tableV = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight ) style:UITableViewStylePlain]; tableV.delegate = self; tableV.dataSource = self; [tableV registerClass:[ItemTableviewCell class] forCellReuseIdentifier:@"ItemTableviewCell"]; } return tableV; } #pragma mark - 界面和数据初始化 - (void)initDataSource { titleArray = [[NSMutableArray alloc] initWithCapacity:0]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } @end