|  | @@ -20,15 +20,15 @@ class INIntrocudeController: BFBaseViewController {
 | 
	
		
			
				|  |  |          let vc = BFRecordScreenController()
 | 
	
		
			
				|  |  |          vc.asset = asset
 | 
	
		
			
				|  |  |          vc.nextActionHandle = {
 | 
	
		
			
				|  |  | -            DispatchQueue.main.async { [weak self] in
 | 
	
		
			
				|  |  | -                let controller = INVideoExportController()
 | 
	
		
			
				|  |  | -                controller.export.voiceList = vc.recordList
 | 
	
		
			
				|  |  | -                controller.export.asset = vc.avasset
 | 
	
		
			
				|  |  | -                self?.navigationController?.pushViewController(controller, animated: true)
 | 
	
		
			
				|  |  | -            }
 | 
	
		
			
				|  |  | +//            DispatchQueue.main.async { [weak self, weak vc] in
 | 
	
		
			
				|  |  | +//                let controller = INVideoExportController()
 | 
	
		
			
				|  |  | +//                controller.export.voiceList = vc?.recordList
 | 
	
		
			
				|  |  | +//                controller.export.asset = vc?.avasset
 | 
	
		
			
				|  |  | +//                self?.navigationController?.pushViewController(controller, animated: true)
 | 
	
		
			
				|  |  | +//            }
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  | -        vc.closeActionHandle = {
 | 
	
		
			
				|  |  | -            self.backBtnClick()
 | 
	
		
			
				|  |  | +        vc.closeActionHandle = {[weak self] in
 | 
	
		
			
				|  |  | +            self?.backBtnClick()
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          vc.view.frame = self.view.frame
 | 
	
		
			
				|  |  |          addChild(vc)
 |