G
Size: a a a
G
G
VM
G
VM
private func checkInternetConnection(id: String) {
guard ReachabilityManager.shared.isReachable else {
self.showConfirmationAlert(
withTitle: l10n(.noInternetConnection),
message: l10n(.pleaseCheckAndTryAgain),
confirmActionTitle: l10n(.retry),
confirmAction: { _ in
self.viewModel.remove(by: id)
}
)
return
}
}
G
VM
G
G
private func checkInternetConnection(id: String) {
guard ReachabilityManager.shared.isReachable else {
self.showConfirmationAlert(
withTitle: l10n(.noInternetConnection),
message: l10n(.pleaseCheckAndTryAgain),
confirmActionTitle: l10n(.retry),
confirmAction: { _ in
self.viewModel.remove(by: id)
}
)
return
}
}
VM
VM
VM
OP
VM
OP
СН
OP