我試圖修改ErrorProtocol的描述輸出。但是這個片段給了我無限循環。Swift:在self.description中獲取self.description
enum GeneralError: ErrorProtocol, CustomStringConvertible {
case NoMemory
var description: String {
return String(self).lowercased()
}
}
更改爲self.dynamic
類型給我一個「常見錯誤」。
有沒有辦法如何獲得「nomemory」?沒有使用條件。
我想你會最終需要這個條件。 – keithbhunter