添加格式化日志页面跳转

This commit is contained in:
2026-07-12 20:50:00 +08:00
parent 849a5e40e4
commit 677b860395
5 changed files with 32 additions and 9 deletions
+7 -1
View File
@@ -81,8 +81,14 @@ extension ViewController: UITableViewDelegate {
tableView.deselectRow(at: indexPath, animated: true)
let item = menuItems[indexPath.section][indexPath.row]
if item.title == "打开备忘录" {
switch item.title {
case "打开备忘录":
openSystemNotesApp()
case "格式化日志":
let viewController = FormatLogViewController()
navigationController?.pushViewController(viewController, animated: true)
default:
break
}
}