Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 310 Bytes

Debug模拟操作.md

File metadata and controls

11 lines (11 loc) · 310 Bytes

模拟内存警告

 NotificationCenter.default.post(name: UIApplication.didReceiveMemoryWarningNotification, object: nil)

模拟kill app

let sel = NSSelectorFromString("terminateWithSuccess")
if UIApplication.shared.responds(to: sel) {
    UIApplication.shared.perform(sel)
}