123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655 |
- //
- // NASViewController.m
- // 双子星云手机
- //
- // Created by xd h on 2024/6/19.
- //
- #import "NASViewController.h"
- #import "NASMySpaceView.h"
- #import "NASCommonUsedView.h"
- #import "shareSecretTableViewCell.h"
- #import "NASLastFileView.h"
- #import "previewImageOrVideoViewController.h"
- #import "previewAudioOrDocumentViewController.h"
- #import "previewFileAndFolderViewController.h"
- #import "shareRecordViewController.h"
- #import "backupsOptionViewController.h"
- #import "fileTransfeSetViewController.h"
- #import "uploadFileRecordViewController.h"
- #import "previewToUploadFileView.h"
- #import "NASMySpaceViewController.h"
- #import "NasPreviewVideoViewController.h"
- #import "lastFileManager.h"
- #import "lastFileTableViewCell.h"
- #import "nasLastFileViewController.h"
- #import "audioPlayerViewController.h"
- #import "videoPlayByAVPlayerViewController.h"
- #import "imageDetailsScrollViewController.h"
- #import "queryShareModel.h"
- @interface NASViewController ()<UITableViewDelegate,UITableViewDataSource>
- {
- BOOL canShareType;
- }
- @property (nonatomic,strong)UITableView*tableView;
- @property (nonatomic, strong) UIView*tableHeadView;
- @property (nonatomic, strong) NASMySpaceView* NASMySpaceV;
- @property (nonatomic, strong) NASCommonUsedView* NASCommonUsedV;
- @property (nonatomic,strong)NASLastFileView*NASLastFileV;
- @property (nonatomic,strong) NSMutableArray *lastFileDataArr;
- @end
- @implementation NASViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
-
- [self.view setBackgroundColor:HWF5F7FAColor];
-
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getExtraFilesDoneFun:) name:getExtraFilesDoneNotification object:nil];
-
- [self.toolBar setHidden:YES];
- [self.navigationBar setHidden:YES];
- [self.navBarBGView setHidden:YES];
-
- [self drawAnyView];
- }
- - (void)drawAnyView{
- //顶底底部图片
- UIImageView *topImageV = [UIImageView new];
- topImageV.image = [UIImage imageNamed:@"Nas_top_img"];
- [self.view addSubview:topImageV];
-
- [topImageV mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.mas_equalTo(0);
- make.left.mas_equalTo(0);
- make.right.mas_equalTo(0);
- make.height.mas_equalTo(280.0*AUTOSCALE);
- }];
-
- NSString *welcomeImageStr = @"nas_welcome_cs";
- //欢迎
- //en-US 英文 ja-JP 日文
- NSArray *arLanguages = [[NSUserDefaults standardUserDefaults] objectForKey:@"AppleLanguages"];
- NSLog(@"arLanguages:%@",arLanguages);
- ///获取设备当前地区的代码和APP语言环境
- NSString *languageCode = [NSLocale preferredLanguages][0];
-
- //目前支持 中文(简体 繁体) 英文 日语
- if([languageCode rangeOfString:@"zh-Hans"].location != NSNotFound)
- {
- welcomeImageStr = @"nas_welcome_cs";
- }
- else if([languageCode rangeOfString:@"zh-Hant"].location != NSNotFound)
- {
- welcomeImageStr = @"nas_welcome_ct";
- }
- else{
- welcomeImageStr = @"nas_welcome_en";
- }
-
- CGFloat imageTopY = 54.0;
- UIImageView *welcomeImageV = [UIImageView new];
- welcomeImageV.image = [UIImage imageNamed:welcomeImageStr];
- [self.view addSubview:welcomeImageV];
-
- [welcomeImageV mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.mas_equalTo(imageTopY);
- make.left.mas_equalTo(16);
- make.width.mas_equalTo(210);
- make.height.mas_equalTo(24);
- }];
-
-
- //添加按钮
- UIButton *addButton = [[UIButton alloc] init];
- [addButton setBackgroundImage:[UIImage imageNamed:@"nas_add_icon"] forState:UIControlStateNormal];
- addButton.tag = 1;
- [addButton addTarget:self action:@selector(didClickHeadButtonFun:) forControlEvents:UIControlEventTouchUpInside];
- [self.view addSubview:addButton];
-
- [addButton mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.mas_equalTo(imageTopY);
- make.right.mas_equalTo(-16);
- make.width.mas_equalTo(24);
- make.height.mas_equalTo(24);
- }];
-
- UIButton *rightTransferListButton = [[UIButton alloc] init];
- //[rightTransferListButton setImage:[UIImage imageNamed:@"icon_file_transfer"] forState:UIControlStateNormal];
- [rightTransferListButton setBackgroundImage:[UIImage imageNamed:@"icon_file_transfer"] forState:UIControlStateNormal];
- rightTransferListButton.tag = 2;
- [rightTransferListButton addTarget:self action:@selector(didClickHeadButtonFun:) forControlEvents:UIControlEventTouchUpInside];
- [self.view addSubview:rightTransferListButton];
-
- [rightTransferListButton mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.mas_equalTo(imageTopY);
- make.right.equalTo(addButton.mas_left).offset(-24);
- make.width.mas_equalTo(24);
- make.height.mas_equalTo(24);
- }];
-
-
- [self.view addSubview:self.tableView];
- [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(0);
- make.right.mas_equalTo(0);
- make.top.equalTo(welcomeImageV.mas_bottom).offset(20);
- make.bottom.mas_equalTo(-TABBARHEIGHT);
- }];
-
- _tableHeadView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_W, 165+ 15 +120 +54 + 15)];
- //_tableHeadView.backgroundColor = [UIColor hwColor:@"#F6F8FA"];
- _tableHeadView.backgroundColor = [UIColor clearColor];
- self.tableView.tableHeaderView = _tableHeadView;
-
- //我的空间
- _NASMySpaceV = [[NASMySpaceView alloc] init];
- [_tableHeadView addSubview:_NASMySpaceV];
-
- [_NASMySpaceV mas_makeConstraints:^(MASConstraintMaker *make) {
- //make.top.equalTo(welcomeImageV.mas_bottom).offset(20);
- make.top.mas_equalTo(0);;
- make.left.mas_equalTo(0);
- make.right.mas_equalTo(0);
- make.height.mas_equalTo(165);
- }];
-
- //常用功能
- _NASCommonUsedV = [[NASCommonUsedView alloc] init];
- [_tableHeadView addSubview:_NASCommonUsedV];
-
- [_NASCommonUsedV mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.equalTo(_NASMySpaceV.mas_bottom).offset(15);
- make.left.mas_equalTo(0);
- make.right.mas_equalTo(0);
- make.height.mas_equalTo(120);
- }];
-
- //最近文件
- [_tableHeadView addSubview:self.NASLastFileV];
- [self.NASLastFileV mas_makeConstraints:^(MASConstraintMaker *make) {
- make.top.equalTo(_NASCommonUsedV.mas_bottom).offset(15);
- make.left.mas_equalTo(0);
- make.right.mas_equalTo(0);
- make.height.mas_equalTo(54);
- }];
-
- BOOL isShowLastFileType = [HWDataManager getBoolWithKey:Const_last_file_show];
- self.NASLastFileV.eyeButton.selected = !isShowLastFileType;
-
- //tableFooterView
- NSString *text = NSLocalizedString(@"NAS_bottom_tip",nil);
- UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, SCREEN_W, 50)];
- label.text = [[NSString alloc] initWithFormat:@"- %@ -",text];
- label.textColor = [UIColor hwColor:@"#959799"];
- label.font = [UIFont systemFontOfSize:12];
- label.textAlignment = NSTextAlignmentCenter;
- self.tableView.tableFooterView = label;
-
- KWeakSelf
- _NASMySpaceV.didClickButtonFun = ^(NSInteger tag) {
- [weakSelf didClickMySpaceFunBy:tag];
- };
-
- _NASCommonUsedV.didClickButtonFun = ^(NSInteger tag) {
- [weakSelf didClickCommonUsedFunBy:tag];
- };
-
- self.NASLastFileV.didClickButtonFun = ^(NSInteger tag) {
- [weakSelf didClickLastFileFunBy:tag];
- };
-
- [self setMySpaceDataFun];
- }
- #pragma mark - 懒加载
- - (UITableView *)tableView{
- if (!_tableView) {
- _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 0, 0) style:UITableViewStylePlain];
- _tableView.delegate = self;
- _tableView.dataSource = self;
- _tableView.showsVerticalScrollIndicator = NO;
- _tableView.showsHorizontalScrollIndicator = NO;
- // _tableView.contentInset = UIEdgeInsetsMake(-H_STATE_BAR, 0, 0, 0);
- [_tableView setSeparatorStyle:(UITableViewCellSeparatorStyleNone)];
- [_tableView setSeparatorColor:[UIColor clearColor]];
- //[_tableView setBackgroundColor:[UIColor hwColor:@"#FFFFFF"]];
- [_tableView setBackgroundColor:[UIColor clearColor]];
- //[_tableView setTableFooterView:[UIView new]];
- [_tableView setBounces:YES];
-
- if (@available(iOS 15.0, *)) {
- _tableView.sectionHeaderTopPadding = 0;
- }
-
- _tableView.layer.cornerRadius = 8;
- _tableView.layer.masksToBounds = YES;
- }
-
- return _tableView;
- }
- - (NASLastFileView*)NASLastFileV
- {
- if(!_NASLastFileV){
- _NASLastFileV = [NASLastFileView new];
- }
- return _NASLastFileV;
- }
- #pragma mark - 列表委托
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
- return 1;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- if(!_lastFileDataArr){
- return 0;
- }
- return _lastFileDataArr.count;
- }
- - (lastFileTableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
-
- __block NSInteger row = indexPath.row;
- static NSString *identifier = @"lastFileTableViewCell";
-
- lastFileTableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:identifier];
- cell.selectionStyle = UITableViewCellSelectionStyleNone;
- if (!cell){
- cell = [[lastFileTableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:identifier];
- [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
- [cell setBackgroundColor:[UIColor clearColor]];
- [cell setAccessoryType:(UITableViewCellAccessoryNone)];
- [cell hideCheckButtonBy:YES];
- }
-
- if(row < _lastFileDataArr.count){
- lastFileModel* dataModel = _lastFileDataArr[row];
- cell.curLastFileModel = dataModel;
-
- // KWeakSelf
- // cell.didClickSwitch = ^(BOOL SwitchOn) {
- // //[weakSelf userCheckFilePreviewByRow:row];
- // };
-
- cell.cellBgView.layer.mask = nil;
- if(row == _lastFileDataArr.count -1){
- /*下圆角*/
- UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, SCREEN_W-32 , 84)
- byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight
- cornerRadii:CGSizeMake(12, 12)];
- CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
- maskLayer.frame = cell.cellBgView.bounds;
- maskLayer.path = maskPath.CGPath;
- cell.cellBgView.layer.mask = maskLayer;
- }
- }
-
- return cell;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
- return 84;
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- {
- NSInteger row = indexPath.row;
-
- if(row < _lastFileDataArr.count){
- lastFileModel* dataModel = _lastFileDataArr[row];
-
- if([dataModel.type isEqualToString:@"video"]){
- videoPlayByAVPlayerViewController *vc = [videoPlayByAVPlayerViewController new];
- vc.VideoDataMode = (NASFileAndFolderDataModel*)dataModel;
- [self.navigationController pushViewController:vc animated:YES];
- }
- else if([dataModel.type isEqualToString:@"audio"]){
-
- NSMutableArray *audioDataArr = [NSMutableArray new];
- NSInteger index = 0;
-
- for (int i=0; i<_lastFileDataArr.count; i++) {
- lastFileModel* audioDataModel = _lastFileDataArr[i];
- if([audioDataModel.type isEqualToString:@"audio"]){
-
- if(i == row){
- index = audioDataArr.count;
- }
-
- [audioDataArr addObject:audioDataModel];
- }
- }
-
- audioPlayerViewController *vc = [audioPlayerViewController new];
- vc.index = index;
- vc.audioOutSidedataArray = audioDataArr;
- [self.navigationController pushViewController:vc animated:YES];
- }
- else if([dataModel.type isEqualToString:@"jpg"]){
-
- NSMutableArray *jpgDataArr = [NSMutableArray new];
- NSInteger index = 0;
-
- for (int i=0; i<_lastFileDataArr.count; i++) {
- lastFileModel* jpgDataModel = _lastFileDataArr[i];
- if([jpgDataModel.type isEqualToString:@"jpg"]){
- if(i == row){
- index = jpgDataArr.count;
- }
- [jpgDataArr addObject:jpgDataModel];
- }
- }
-
- imageDetailsScrollViewController *vc = [imageDetailsScrollViewController new];
- vc.index = index;
- vc.totalDataArr = jpgDataArr;
- [self.navigationController pushViewController:vc animated:YES];
- vc.canShareType = canShareType;
-
- }
- }
- }
- #pragma mark 点击头部
- - (void)didClickHeadButtonFun:(UIButton*)but
- {
- NSInteger tag = but.tag;
-
- switch (tag) {
- case 1:
- {
- [self userDidClickUploadViewFun];
- }
- break;
- case 2:
- {
- uploadFileRecordViewController *vc = [uploadFileRecordViewController new];
- [self pushViewController:vc animated:YES];
- }
- break;
-
- default:
- break;
- }
- }
- #pragma mark 点击我的空间模块
- - (void)didClickMySpaceFunBy:(NSInteger)tag
- {
- switch (tag)
- {
- case 1:
- {
- NASMySpaceViewController *vc = [NASMySpaceViewController new];
- [self pushViewController:vc animated:YES];
- }
- break;
- case 10:{
- previewImageOrVideoViewController *vc = [previewImageOrVideoViewController new];
- vc.isPhotoType = YES;
- [self pushViewController:vc animated:YES];
- }
- break;
- case 11:{
- // previewImageOrVideoViewController *vc = [previewImageOrVideoViewController new];
- // vc.isPhotoType = NO;
- // [self pushViewController:vc animated:YES];
-
- NasPreviewVideoViewController *vc = [NasPreviewVideoViewController new];
- [self pushViewController:vc animated:YES];
- }
- break;
- case 12:{
- previewAudioOrDocumentViewController *vc = [previewAudioOrDocumentViewController new];
- vc.isAudioType = YES;
- [self pushViewController:vc animated:YES];
- }
- break;
- case 13:{
- previewFileAndFolderViewController *vc = [previewFileAndFolderViewController new];
- [self pushViewController:vc animated:YES];
- }
- break;
-
- default:
- break;
- }
- }
- #pragma mark 点击常用模块模块
- - (void)didClickCommonUsedFunBy:(NSInteger)tag
- {
- switch (tag)
- {
- case 10:{
- backupsOptionViewController *vc = [backupsOptionViewController new];
- [self pushViewController:vc animated:YES];
- }
- break;
- case 11:
- {
- if(!ksharedAppDelegate.isWebSockLinkOKAginType){
- [[iToast makeText:NSLocalizedString(@"check_could_phone_state",nil)] show];
- return;
- }
- fileTransfeSetViewController *nextVC = [fileTransfeSetViewController new];
- [self pushViewController:nextVC animated:YES];
- }
- break;
- case 12:{
- shareRecordViewController *vc = [shareRecordViewController new];
- [self pushViewController:vc animated:YES];
- }
- break;
-
- default:
- break;
- }
- }
- #pragma mark 点击最近文件模块
- - (void)didClickLastFileFunBy:(NSInteger)tag
- {
- if(tag == 2){
- [self getLastFileDataFun];
- }
- else if (tag ==1){
- nasLastFileViewController *vc = [nasLastFileViewController new];
- [self pushViewController:vc animated:YES];
- }
- }
- #pragma mark 用户点击上传文件
- - (void)userDidClickUploadViewFun
- {
- [self hideTabbarFun];
- previewToUploadFileView *previewToUploadFileV = [[previewToUploadFileView alloc] init];
- [self.view addSubview:previewToUploadFileV];
-
- [previewToUploadFileV mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(0);
- make.right.mas_equalTo(0);
- make.bottom.mas_equalTo(10);
- make.top.mas_equalTo(0);
- }];
-
- KWeakSelf
- previewToUploadFileV.didClickButtonFun = ^(NSInteger tag) {
- [weakSelf gotoUploadFileFunWith:tag];
- };
-
- previewToUploadFileV.didClickCloseFun = ^{
- [weakSelf showTabbarFun];
- };
- }
- #pragma mark 调整文件上传
- - (void)gotoUploadFileFunWith:(NSInteger)tag
- {
- uploadImageOrVideoViewController *vc = [uploadImageOrVideoViewController new];
- if(tag ==10){
- vc.isPhotoType = YES;
- }
- else{
- vc.isPhotoType = NO;
- }
- [self pushViewController:vc animated:YES];
- }
- #pragma mark 获取到云机基本新
- - (void)getExtraFilesDoneFun:(NSNotification*)not
- {
- [self setMySpaceDataFun];
- }
- #pragma mark 设置我的空间信息
- - (void)setMySpaceDataFun
- {
- if(ksharedAppDelegate.cloudPhoneExtraFileListMod){
- [_NASMySpaceV setProgressFun];
- }
- }
- - (void)viewWillAppear:(BOOL)animated{
- [super viewWillAppear:animated];
- [self getLastFileDataFun];
-
- [self queryShareSwitchFunFun];
- }
- - (void)viewWillDisappear:(BOOL)animated{
- [super viewWillDisappear:animated];
-
- }
- - (void)pushViewController:(UIViewController*)vc animated:(BOOL)animated
- {
- [self.navigationController pushViewController:vc animated:animated];
- //[self hideTabbarFun];
- }
- - (void)showTabbarFun
- {
- // 显示 tab bar
- self.tabBarController.tabBar.hidden = NO;
- }
- - (void)hideTabbarFun
- {
- // 隐藏 tab bar
- self.tabBarController.tabBar.hidden = YES;
- }
- #pragma mark 获取最近文件数据
- - (void)getLastFileDataFun
- {
- _lastFileDataArr = [lastFileManager shareManager].lastFileListArr;
- //HLog(@"%@",_lastFileDataArr);
-
- BOOL isShowLastFileType = [HWDataManager getBoolWithKey:Const_last_file_show];
- if(!isShowLastFileType){
- _tableHeadView.frame = CGRectMake(0, 0, SCREEN_W, 165+ 15 +120 +54 + 15);
-
- [self.NASLastFileV mas_remakeConstraints:^(MASConstraintMaker *make) {
- make.top.equalTo(_NASCommonUsedV.mas_bottom).offset(15);
- make.left.mas_equalTo(0);
- make.right.mas_equalTo(0);
- make.height.mas_equalTo(54);
- }];
-
- self.NASLastFileV.notDataImageV.hidden = YES;
- self.NASLastFileV.notDataLabel.hidden = YES;
-
- //全圆角
- UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, SCREEN_W-32 , 54)
- byRoundingCorners:UIRectCornerAllCorners
- cornerRadii:CGSizeMake(12, 12)];
- CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
- maskLayer.frame = self.NASLastFileV.bounds;
- maskLayer.path = maskPath.CGPath;
- self.NASLastFileV.whiteBgView.layer.mask = nil;
- self.NASLastFileV.whiteBgView.layer.mask = maskLayer;
-
- _lastFileDataArr = [NSMutableArray new];
-
- }
- else if(_lastFileDataArr.count > 0){
- _tableHeadView.frame = CGRectMake(0, 0, SCREEN_W, 165+ 15 +120 +54 + 15);
-
- [self.NASLastFileV mas_remakeConstraints:^(MASConstraintMaker *make) {
- make.top.equalTo(_NASCommonUsedV.mas_bottom).offset(15);
- make.left.mas_equalTo(0);
- make.right.mas_equalTo(0);
- make.height.mas_equalTo(54);
- }];
-
- self.NASLastFileV.notDataImageV.hidden = YES;
- self.NASLastFileV.notDataLabel.hidden = YES;
-
- /*上圆角*/
- UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, SCREEN_W- 32 , 54)
- byRoundingCorners:UIRectCornerTopLeft|UIRectCornerTopRight
- cornerRadii:CGSizeMake(12, 12)];
- CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
- maskLayer.frame = CGRectMake(0, 0, SCREEN_W -32, 54);
- maskLayer.path = maskPath.CGPath;
- self.NASLastFileV.whiteBgView.layer.mask = nil;
- self.NASLastFileV.whiteBgView.layer.mask = maskLayer;
-
- }
- else{
- _tableHeadView.frame = CGRectMake(0, 0, SCREEN_W, 165+ 15 +120 +254 + 15);
-
- [self.NASLastFileV mas_remakeConstraints:^(MASConstraintMaker *make) {
- make.top.equalTo(_NASCommonUsedV.mas_bottom).offset(15);
- make.left.mas_equalTo(0);
- make.right.mas_equalTo(0);
- make.height.mas_equalTo(254);
- }];
-
- self.NASLastFileV.notDataImageV.hidden = NO;
- self.NASLastFileV.notDataLabel.hidden = NO;
-
- //全圆角
- UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, SCREEN_W-32 , 254)
- byRoundingCorners:UIRectCornerAllCorners
- cornerRadii:CGSizeMake(12, 12)];
- CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
- maskLayer.frame = self.NASLastFileV.bounds;
- maskLayer.path = maskPath.CGPath;
- self.NASLastFileV.whiteBgView.layer.mask = nil;
- self.NASLastFileV.whiteBgView.layer.mask = maskLayer;
- }
-
- [self.tableView reloadData];
- }
- #pragma mark 获取分享开关
- -(void)queryShareSwitchFunFun
- {
- NSMutableDictionary *paraDict = [NSMutableDictionary new];
-
- [paraDict setValue:@7 forKey:@"type"];
-
- KWeakSelf
- [[netWorkManager shareInstance] CommonGetWithCallBackCode:queryShareSwitchFun Parameters:paraDict success:^(id _Nonnull responseObject){
- queryShareModel *queryShareMod = [[queryShareModel alloc] initWithDictionary:responseObject error:nil];
- if(queryShareMod){
- self->canShareType = queryShareMod.data.configValue;
- //[weakSelf.curEditTypeBottomView setCanShaewFunBy:queryShareMod.data.configValue];
- }
-
- } failure:^(NSError * _Nonnull error) {
- }];
- }
- @end
|