mineViewController.m 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552
  1. //
  2. // mineViewController.m
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/6/21.
  6. //
  7. #import "mineViewController.h"
  8. #import "MineCommonUsedView.h"
  9. #import "privacyModeViewController.h"
  10. #import "TipsQRCodeForChangeDeviceViewController.h"
  11. #import "AboutViewController.h"
  12. #import "clearCacheAlretViewController.h"
  13. #import "inputPWDViewController.h"
  14. #import "customerServiceViewController.h"
  15. #import "customDownloadCacheManager.h"
  16. #import "CustomerWebViewController.h"
  17. #import "audioPlayingView.h"
  18. #import "DFPlayer.h"
  19. #import "audioPlayerViewController.h"
  20. @interface mineViewController ()
  21. @property(nonatomic,strong)UIButton *netButton;
  22. @property(nonatomic,strong)UILabel *snLabel;
  23. @property(nonatomic,strong)MineCommonUsedView *MineCommonUsedV;
  24. @end
  25. @implementation mineViewController
  26. - (void)viewDidLoad {
  27. [super viewDidLoad];
  28. // Do any additional setup after loading the view.
  29. [self.view setBackgroundColor:HWF5F7FAColor];
  30. [self.toolBar setHidden:YES];
  31. [self.navigationBar setHidden:YES];
  32. [self.navBarBGView setHidden:YES];
  33. [self drawAnyView];
  34. }
  35. - (void)drawAnyView{
  36. //顶底底部图片
  37. UIImageView *topImageV = [UIImageView new];
  38. topImageV.image = [UIImage imageNamed:@"Nas_top_img"];
  39. [self.view addSubview:topImageV];
  40. [topImageV mas_makeConstraints:^(MASConstraintMaker *make) {
  41. make.top.mas_equalTo(0);
  42. make.left.mas_equalTo(0);
  43. make.right.mas_equalTo(0);
  44. make.height.mas_equalTo(280.0*AUTOSCALE);
  45. }];
  46. //商标图片
  47. UIImageView *TipImageV = [UIImageView new];
  48. TipImageV.image = [UIImage imageNamed:@"mine_head_icon"];
  49. [self.view addSubview:TipImageV];
  50. [TipImageV mas_makeConstraints:^(MASConstraintMaker *make) {
  51. make.top.mas_equalTo(68);
  52. make.left.mas_equalTo(16);
  53. make.width.mas_equalTo(48);
  54. make.height.mas_equalTo(48);
  55. }];
  56. _snLabel = [[UILabel alloc] init];
  57. _snLabel.font = [UIFont boldSystemFontOfSize:14.0];
  58. _snLabel.textColor = [UIColor hwColor:@"#0A132B"];
  59. //_fileNamelabel.backgroundColor = [UIColor greenColor];
  60. [self.view addSubview:_snLabel];
  61. [_snLabel mas_makeConstraints:^(MASConstraintMaker *make) {
  62. make.left.equalTo(TipImageV.mas_right).offset(5);
  63. make.right.mas_equalTo(-16);
  64. //make.centerY.mas_equalTo(TipImageV.mas_centerY).offset(0);
  65. make.top.mas_equalTo(TipImageV.mas_top).offset(0);
  66. make.height.mas_equalTo(20);
  67. }];
  68. _netButton = [[UIButton alloc] init];
  69. [_netButton setImage:[UIImage imageNamed:@"mine_net_icon"] forState:UIControlStateNormal];
  70. [_netButton setTitleColor:[UIColor hwColor:@"#058DFB"] forState:UIControlStateNormal];
  71. _netButton.titleLabel.font = [UIFont systemFontOfSize:12.0];
  72. //_netButton.tag = 1;
  73. //[_netButton addTarget:self action:@selector(didClickButtonFun:) forControlEvents:UIControlEventTouchUpInside];
  74. _netButton.userInteractionEnabled = NO;
  75. [self.view addSubview:_netButton];
  76. _netButton.layer.cornerRadius = 12;
  77. _netButton.layer.borderWidth = 1.5;
  78. _netButton.layer.borderColor = [UIColor hwColor:@"#058DFB"].CGColor;
  79. _netButton.layer.masksToBounds = YES;
  80. [_netButton mas_makeConstraints:^(MASConstraintMaker *make) {
  81. //make.width.mas_equalTo(58);
  82. make.width.mas_equalTo(70);
  83. make.height.mas_equalTo(24);
  84. make.left.equalTo(TipImageV.mas_right).offset(5);
  85. make.bottom.mas_equalTo(TipImageV.mas_bottom).offset(0);
  86. }];
  87. //常用功能
  88. _MineCommonUsedV = [[MineCommonUsedView alloc] init];
  89. [self.view addSubview:_MineCommonUsedV];
  90. [_MineCommonUsedV mas_makeConstraints:^(MASConstraintMaker *make) {
  91. make.top.equalTo(TipImageV.mas_bottom).offset(15);
  92. make.left.mas_equalTo(0);
  93. make.right.mas_equalTo(0);
  94. make.height.mas_equalTo(210);
  95. }];
  96. KWeakSelf
  97. _MineCommonUsedV.didClickButtonFun = ^(NSInteger tag) {
  98. [weakSelf didClickCommonUsedFunBy:tag];
  99. };
  100. }
  101. #pragma mark 点击常用模块模块
  102. - (void)didClickCommonUsedFunBy:(NSInteger)tag
  103. {
  104. if([AFNetworkReachabilityManager sharedManager].networkReachabilityStatus == AFNetworkReachabilityStatusNotReachable)
  105. {
  106. [[iToast makeText:NSLocalizedString(@"phone_network_fail_Tips",nil)] show];
  107. return;
  108. }
  109. switch (tag)
  110. {
  111. case 10:{
  112. inputPWDViewController *nextVC = [inputPWDViewController new];
  113. nextVC.isCheckPwdType = YES;
  114. [self pushViewController:nextVC animated:YES];
  115. KWeakSelf
  116. nextVC.didInputRightPwdFun = ^{
  117. [weakSelf gotoPrivacyModeVCFun];
  118. };
  119. }
  120. break;
  121. case 11:{
  122. TipsQRCodeForChangeDeviceViewController *nextVC = [TipsQRCodeForChangeDeviceViewController new];
  123. [self pushViewController:nextVC animated:YES];
  124. }
  125. break;
  126. case 12:{
  127. CustomerWebViewController *vc = [[CustomerWebViewController alloc] init];
  128. vc.titleStr = NSLocalizedString(@"mine_help_title",nil);
  129. NSString *url = @"http://testprivacy.phone.armclouding.com:1801/problemFeedback/#/pages/fileSharing/problem/index?sn=";
  130. if([CloudService rangeOfString:@"hiboxde.armclouding.com"].location != NSNotFound){
  131. //url = @"http://hiboxde.armclouding.com:7780/h5/rule.html";;
  132. }
  133. vc.webUrl = [[NSString alloc] initWithFormat:@"%@%@",url,[connectDeviceManager shareInstance].DeviceThirdIdMod.data.changeSn];
  134. [self pushViewController:vc animated:YES];
  135. //数据埋点
  136. [[netWorkManager shareInstance] DataEmbeddingPointBy:2 withEventValue:@"Help_feedback"];
  137. }
  138. break;
  139. case 13:{
  140. customerServiceViewController *vc = [customerServiceViewController new];
  141. [self pushViewController:vc animated:YES];
  142. }
  143. break;
  144. case 14:{
  145. CustomerWebViewController *vc = [[CustomerWebViewController alloc] init];
  146. vc.titleStr = NSLocalizedString(@"mine_newuser_title",nil);
  147. NSString *url = @"http://testprivacy.phone.androidscloud.com:1801/warrantyService/index.html#/novice";
  148. if([CloudService rangeOfString:@"hiboxde.armclouding.com"].location != NSNotFound){
  149. //url = @"http://hiboxde.armclouding.com:7780/h5/rule.html";;
  150. }
  151. vc.webUrl = url;
  152. [self pushViewController:vc animated:YES];
  153. }
  154. break;
  155. case 15:{
  156. [self clickClearCacheButtonFun];
  157. }
  158. break;
  159. case 16:{
  160. AboutViewController *nextVC = [[AboutViewController alloc] init];
  161. nextVC.getSysInfo = ^{
  162. [[webSocketManager shareInstance] getSysInfoFun];
  163. };
  164. [self pushViewController:nextVC animated:YES];
  165. }
  166. break;
  167. case 17:{
  168. [[iToast makeText:@"点击了注销"] show];
  169. }
  170. break;
  171. default:
  172. break;
  173. }
  174. }
  175. #pragma mark 去设置隐私
  176. - (void)gotoPrivacyModeVCFun
  177. {
  178. privacyModeViewController *nextVC = [[privacyModeViewController alloc] init];
  179. [self pushViewController:nextVC animated:YES];
  180. }
  181. #pragma mark 清理缓存相关
  182. - (void)clickClearCacheButtonFun
  183. {
  184. KWeakSelf
  185. /*弹窗提示清除缓存*/
  186. clearCacheAlretViewController *nextVC = [[clearCacheAlretViewController alloc] initWithTiTle:NSLocalizedString(@"my_set_no_clear_cache",nil)
  187. msg:NSLocalizedString(@"clear_cache_tip",nil)
  188. imageStr:nil
  189. cancelTitle:NSLocalizedString(@"other_cancel",nil)
  190. okTitle:NSLocalizedString(@"other_clear",nil) isOkBtnHighlight:YES
  191. didClickOk:^(BOOL isSelect) {
  192. [weakSelf handleClearCacheFunWith:isSelect];
  193. } didClickCancel:^{
  194. }];
  195. nextVC.modalPresentationStyle = UIModalPresentationCustom;
  196. [self presentViewController:nextVC animated:YES completion:^{
  197. nextVC.view.superview.backgroundColor = [UIColor clearColor];
  198. }];
  199. }
  200. - (void)handleClearCacheFunWith:(BOOL)isSelectFileTransfer
  201. {
  202. [self ClearCommonCacheFun:isSelectFileTransfer];
  203. //数据埋点
  204. [[netWorkManager shareInstance] DataEmbeddingPointBy:2 withEventValue:@"Clear_cache"];
  205. }
  206. - (void)ClearCommonCacheFun:(BOOL)isSelectFileTransfer
  207. {
  208. NSString *ruiyunLogPath = [NSString stringWithFormat:@"%@/logs/debug_0.log",CachesPatch];
  209. long logSize1 = [iTools fileSizeAtPath:ruiyunLogPath];
  210. [[NSFileManager defaultManager] removeItemAtPath:ruiyunLogPath error:nil];
  211. NSString *appLogPath = [NSString stringWithFormat:@"%@/logs/app.log",CachesPatch];
  212. long logSize2 = [iTools fileSizeAtPath:appLogPath];
  213. [[NSFileManager defaultManager] removeItemAtPath:appLogPath error:nil];
  214. //
  215. NSString *downLoadThumbnailPath = [NSString stringWithFormat:@"%@/DownLoadThumbnail",CachesPatch];
  216. long logSize3 = [iTools folderSizeAtPath:downLoadThumbnailPath];
  217. [[NSFileManager defaultManager] removeItemAtPath:downLoadThumbnailPath error:nil];
  218. NSString *downLoadNasDowmPath = [customDownloadCacheManager getFullDirector];
  219. long logSize4 = [iTools folderSizeAtPath:downLoadNasDowmPath];
  220. [[NSFileManager defaultManager] removeItemAtPath:downLoadNasDowmPath error:nil];
  221. long clearTotal = logSize1 + logSize2 + logSize3 +logSize4 ;
  222. if(isSelectFileTransfer){
  223. [self clearCacheByFileTransferFun:clearTotal];
  224. }
  225. else{
  226. [self showClearAllTipBy:clearTotal];
  227. }
  228. }
  229. - (void)showClearAllTipBy:(long)clearTotal
  230. {
  231. long clearTotalK = clearTotal /1024;
  232. NSString *tipStr1 = NSLocalizedString(@"my_set_no_clear_finish",nil);
  233. NSString *tipStr2 = @"";
  234. if(clearTotalK > 1024*1024){
  235. tipStr2 = [[NSString alloc] initWithFormat:@"%.02fGB",clearTotalK/1024.0/1024.0];
  236. }
  237. else if(clearTotalK > 1024){
  238. tipStr2 = [[NSString alloc] initWithFormat:@"%.02fMB",clearTotalK/1024.0];
  239. }
  240. else //if(clearTotalK > 0)
  241. {
  242. tipStr2 = [[NSString alloc] initWithFormat:@"%ldKB",clearTotalK];
  243. }
  244. NSString *tipfullStr = [[NSString alloc] initWithFormat:@"%@%@",tipStr1,tipStr2];
  245. //提示语
  246. [[iToast makeText:tipfullStr] show];
  247. }
  248. - (void)clearCacheByFileTransferFun:(long)clearTotal
  249. {
  250. //清理图片
  251. BOOL needReUploadingType = NO;
  252. NSString *ImagePath = [NSString stringWithFormat:@"%@/Image",CachesPatch];
  253. long imageAllSize = [iTools folderSizeAtPath:ImagePath];
  254. if([uploadFileManager shareInstance].curUploadFileDataModel
  255. && [uploadFileManager shareInstance].curUploadFileDataModel.curUploadFileType == uploadFileTypeImage
  256. && [uploadFileManager shareInstance].curUploadFileDataModel.curUploadStateType == uploadStateUploading){
  257. [uploadFileManager shareInstance].curUploadFileDataModel.curUploadStateType = uploadStateSuspend;
  258. needReUploadingType = YES;
  259. }
  260. [[NSFileManager defaultManager] removeItemAtPath:ImagePath error:nil];
  261. if(needReUploadingType){
  262. dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
  263. [uploadFileManager shareInstance].curUploadFileDataModel.curUploadStateType = uploadStateUploading;
  264. });
  265. }
  266. //清理视频文件
  267. NSString *videoPath = [NSString stringWithFormat:@"%@/Video",CachesPatch];
  268. long vide0AllSizeBeforeClear = [iTools folderSizeAtPath:videoPath];
  269. NSString *backupsingVideoName = nil;
  270. if([backupsFileManager shareInstance].curPhotosBackupsTaskMod
  271. && [backupsFileManager shareInstance].curPhotosBackupsTaskMod.curUploadFileType == uploadFileTypeVideo){
  272. backupsingVideoName = [backupsFileManager shareInstance].curPhotosBackupsTaskMod.filename;
  273. }
  274. NSString *uploadingVideoName = nil;
  275. if([uploadFileManager shareInstance].curUploadFileDataModel
  276. && [uploadFileManager shareInstance].curUploadFileDataModel.curUploadFileType == uploadFileTypeVideo){
  277. uploadingVideoName = [uploadFileManager shareInstance].curUploadFileDataModel.filename;
  278. }
  279. if(backupsingVideoName || uploadingVideoName){
  280. NSMutableString *fileName = [NSMutableString new];
  281. if(backupsingVideoName){
  282. [fileName appendString:backupsingVideoName];
  283. }
  284. if(uploadingVideoName){
  285. if(fileName.length > 0){
  286. [fileName appendString:@"|"];
  287. }
  288. [fileName appendString:uploadingVideoName];
  289. }
  290. [self deleteFilesInDirectoryAtPath:videoPath withOutFileName:fileName];
  291. }
  292. else{
  293. [[NSFileManager defaultManager] removeItemAtPath:videoPath error:nil];
  294. }
  295. long vide0AllSizeAfterClear = [iTools folderSizeAtPath:videoPath];
  296. //清理下载中
  297. NSString *downLoadingPath = [NSString stringWithFormat:@"%@/DownLoadFlie",CachesPatch];
  298. long downLoadingSizeBeforeClear = [iTools folderSizeAtPath:downLoadingPath];
  299. NSString *downLoadingFileName = nil;
  300. if([downloadManager shareInstance].curDownloadFileModel
  301. && ([downloadManager shareInstance].curDownloadFileModel.curDownloadStateType == downloadStateUploading
  302. ||[downloadManager shareInstance].curDownloadFileModel.curDownloadStateType == downloadStateSuspend)){
  303. downLoadingFileName = [[downloadManager shareInstance].curDownloadFileModel getFileNameFun];
  304. [self deleteFilesInDirectoryAtPath:downLoadingPath withOutFileName:downLoadingFileName];
  305. }
  306. else{
  307. [[NSFileManager defaultManager] removeItemAtPath:downLoadingPath error:nil];
  308. }
  309. long downLoadingSizeAfterClear = [iTools folderSizeAtPath:downLoadingPath];
  310. //清理数据库表 完成的
  311. //下载完成
  312. NSMutableString* where = [[NSMutableString alloc] initWithString:@"where "];
  313. NSString *curStr = [NSString stringWithFormat:@"%@=%@ or %@=%@ ",bg_sqlKey(@"curDownloadStateType"),bg_sqlValue([NSNumber numberWithInt:downloadStateDone]),bg_sqlKey(@"curDownloadStateType"),bg_sqlValue([NSNumber numberWithInt:downloadStateFail])];
  314. [where appendString:curStr];
  315. [couldPhoneFileModel bg_deleteAsync:download_tableName where:where complete:^(BOOL isSuccess) {
  316. }];
  317. //上传完成
  318. NSMutableString* where2 = [[NSMutableString alloc] initWithString:@"where "];
  319. NSString *curStr2 = [NSString stringWithFormat:@"%@=%@ or %@=%@ ",bg_sqlKey(@"curUploadStateType"),bg_sqlValue([NSNumber numberWithInt:uploadStateDone]),
  320. bg_sqlKey(@"curUploadStateType"),bg_sqlValue([NSNumber numberWithInt:uploadStateFail])];
  321. [where2 appendString:curStr2];
  322. [uploadFileDataModel bg_deleteAsync:upLoadFile_image_tableName where:where2 complete:^(BOOL isSuccess) {
  323. }];
  324. //清理音频播放缓存
  325. NSString *audioPlayPath = [NSString stringWithFormat:@"%@/%@",DocumentPath,@"playAudioCache"];;
  326. long audioPlayAllSize = [iTools folderSizeAtPath:audioPlayPath];
  327. [[NSFileManager defaultManager] removeItemAtPath:audioPlayPath error:nil];
  328. long curTotolSize = (downLoadingSizeBeforeClear - downLoadingSizeAfterClear) + (vide0AllSizeBeforeClear - vide0AllSizeAfterClear) + imageAllSize + clearTotal + audioPlayAllSize;
  329. [self showClearAllTipBy:curTotolSize];
  330. }
  331. - (BOOL)deleteFilesInDirectoryAtPath:(NSString *)path withOutFileName:(NSString*)fileNames {
  332. NSFileManager *fileManager = [NSFileManager defaultManager];
  333. NSArray *fileNameArr = [fileNames componentsSeparatedByString:@"|"];
  334. // 使用NSDirectoryEnumerator遍历目录
  335. NSDirectoryEnumerator *directoryEnumerator = [fileManager enumeratorAtPath:path];
  336. NSString *fileName;
  337. while ((fileName = [directoryEnumerator nextObject])) {
  338. BOOL canDelType = YES;
  339. for (NSString*noDelfileName in fileNameArr) {
  340. if([noDelfileName isEqualToString:fileName]){
  341. canDelType = NO;
  342. break;
  343. }
  344. }
  345. if(canDelType){
  346. NSString *filePath = [path stringByAppendingPathComponent:fileName];
  347. // 如果是文件,则删除它
  348. if ([fileManager fileExistsAtPath:filePath]) {
  349. BOOL success = [fileManager removeItemAtPath:filePath error:nil];
  350. if (!success) {
  351. // 如果删除失败,返回NO并处理错误
  352. return NO;
  353. }
  354. }
  355. }
  356. }
  357. // 所有文件都成功删除,返回YES
  358. return YES;
  359. }
  360. #pragma mark 数据设置
  361. - (void)setDataFun
  362. {
  363. NSString *fullSNStr = [[NSString alloc] initWithFormat:@"SN:%@",[connectDeviceManager shareInstance].DeviceThirdIdMod.data.changeSn];
  364. _snLabel.text = fullSNStr;
  365. NSString *NetButText = NSLocalizedString(@"mine_net_LAN",nil);
  366. if(![connectDeviceManager shareInstance].isPingOk){
  367. NetButText = NSLocalizedString(@"mine_net_WAN",nil);
  368. }
  369. RCSocketCloudPhoneStatus status = [[webSocketManager shareInstance].commandChannelManager rc_socketStatus];
  370. HLog(@"rc_socketStatus:%ld",status)
  371. if(status == RCSocketCloudPhoneStatusFailed
  372. ||status == RCSocketCloudPhoneStatusClosedByServer
  373. ||status == RCSocketCloudPhoneStatusClosedByUser
  374. ||!ksharedAppDelegate.isWebSockLinkOKAginType//断开了
  375. )
  376. {
  377. NetButText = NSLocalizedString(@"mine_net_unLink",nil);
  378. }
  379. [_netButton setTitle:NetButText forState:UIControlStateNormal];
  380. }
  381. - (void)viewWillAppear:(BOOL)animated
  382. {
  383. [super viewWillAppear:animated];
  384. [self setDataFun];
  385. [self handelAudioPlayingViewFun];
  386. }
  387. - (void)viewWillDisappear:(BOOL)animated{
  388. [super viewWillDisappear:animated];
  389. }
  390. - (void)pushViewController:(UIViewController*)vc animated:(BOOL)animated
  391. {
  392. [self.navigationController pushViewController:vc animated:animated];
  393. }
  394. #pragma mark 处理音频播放中的视图状态
  395. - (void)handelAudioPlayingViewFun
  396. {
  397. audioPlayingView * audioPlayingV = [audioPlayingView sharedInstance];
  398. if([DFPlayer sharedPlayer].state == DFPlayerStateBuffering
  399. ||[DFPlayer sharedPlayer].state == DFPlayerStatePlaying
  400. ||[DFPlayer sharedPlayer].state == DFPlayerStatePause){//播放中
  401. [self showAudioPlayingViewFun];
  402. }
  403. else{
  404. [self hideAudioPlayingViewFun];
  405. }
  406. KWeakSelf
  407. audioPlayingV.didClickButtonFun = ^(NSInteger tag) {
  408. if(tag == 1){
  409. [weakSelf hideAudioPlayingViewFun];
  410. }
  411. else if(tag == 5){
  412. [weakSelf AudioPlayingGotoAudioPlayerVCFun];
  413. }
  414. };
  415. }
  416. - (void)AudioPlayingGotoAudioPlayerVCFun{
  417. audioPlayerViewController *vc = [audioPlayerViewController new];
  418. vc.isfirstEnterType = NO;
  419. [self.navigationController pushViewController:vc animated:YES];
  420. }
  421. #pragma mark 显示音频播放中的视图
  422. - (void)showAudioPlayingViewFun
  423. {
  424. audioPlayingView * audioPlayingV = [audioPlayingView sharedInstance];
  425. [self.view addSubview:audioPlayingV];
  426. [audioPlayingV mas_makeConstraints:^(MASConstraintMaker *make) {
  427. make.height.mas_equalTo(49);
  428. make.left.mas_equalTo(0);
  429. make.right.mas_equalTo(0);
  430. make.bottom.mas_equalTo(-TABBARHEIGHT);
  431. }];
  432. }
  433. #pragma mark 隐藏音频播放中的视图
  434. - (void)hideAudioPlayingViewFun
  435. {
  436. // audioPlayingView * audioPlayingV = [audioPlayingView sharedInstance];
  437. // [audioPlayingV removeFromSuperview];
  438. }
  439. @end