使用未解析的标识符 'UIMutableUserNotificationAction'

Use of unresolved identifier 'UIMutableUserNotificationAction'

我有一个单独的 Singleton class,其中包含 LocalNotification 注册和 Action 设置代码。我得到

Use of unresolved identifier error

也将所有 classes 添加到 XCTest 目标。

只需导入 UIKit 框架

import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        let mutNotification = UIMutableUserNotificationAction()
        mutNotification.identifier = "Y"
    }
}