Commit e8a0ce1e authored by yqz's avatar yqz

1

parent abc95e48
......@@ -174,6 +174,7 @@ class SettingViewController : BaseViewController , UITableViewDelegate, UITableV
case settingLabels.RemoveAfterImport.rawValue:
SettingConfiguration.share.config.removeImg = !SettingConfiguration.share.config.removeImg
tableView.reloadRows(at: [indexPath], with: .none)
tableView.reloadData()
vibrate()
break
case settingLabels.Widgets.rawValue:
......@@ -216,6 +217,7 @@ class SettingViewController : BaseViewController , UITableViewDelegate, UITableV
case settingLabels.Vibration.rawValue:
SettingConfiguration.share.config.vibration = !(SettingConfiguration.share.config.vibration ?? false)
tableView.reloadRows(at: [indexPath], with: .none)
tableView.reloadData()
vibrate(true)
break
case settingLabels.Resumepurchase.rawValue:
......@@ -283,6 +285,7 @@ class SettingViewController : BaseViewController , UITableViewDelegate, UITableV
}else{
SettingConfiguration.share.config.faceId = false
self.tableView.reloadRows(at: [indexPath], with: .none)
tableView.reloadData()
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment