标签: ios swift
有没有这样的功能
void App_UnhandledException(object sender,UnhandledExceptionEventArgs E)
答案 0 :(得分:2)
您可以在>>> import ast >>> lists = [10, "test", 10.5] >>> ast.literal_eval(repr(lists)) [10, 'test', 10.5] 中设置NSSetUncaughtExceptionHandler,请参阅此post
>>> import ast >>> lists = [10, "test", 10.5] >>> ast.literal_eval(repr(lists)) [10, 'test', 10.5]
NSSetUncaughtExceptionHandler
但是AppDelegate 并不完全支持,正如post中的解释,您需要在Swift
AppDelegate
Swift
修改强>
感谢Martin R的评论,Swift现在支持它。