tapConfirmDelete: tapConfirmDelete.asSignal(), tapBottomDeleteButton: tapBottomDeleteButton.asSignal() ) let output = viewModel.bind(inputs: inputs) output.showDeleteConfirm.emit(onNext: { [weak self] _ in guard let self = self else { return } let alert = UIAlertController(title: "ߘΛআ͠·͔͢ʁ", message: nil, preferredStyle: .alert) alert.addAction(UIAlertAction(title: "Ωϟϯηϧ", style: .cancel, handler: nil)) alert.addAction(UIAlertAction(title: "আ", style: .destructive) { _ in tapConfirmDelete.accept(()) alert.dismiss(animated: true, completion: nil) }) self.present(alert, animated: true, completion: nil) }).disposed(by: disposeBag) 39