我正在开发一个简单的音乐音序器应用程序。这种应用程序往往具有复杂的数据结构,必须保存/加载,所以Codable
在 Swift4 中引入协议对我来说完全是一个好消息。
我的问题是:我必须有一个不可编码的属性。它不必编码,因为它是一个临时变量,仅在应用程序处于活动状态时才保持活动状态。所以我只是尝试通过实现来排除CodingKey
,但编译器仍然给我错误“类型'Song'不符合协议'Decodable'”。
具体来说,我想在下面的代码中排除“musicSequence”。
class Song : Codable { //Type 'Song' does not conform to protocol 'Decodable'
var songName : String = "";
var tempo : Double = 120;
// Musical structure
var tracks : [Track] = [] // "Track" is my custom class, which conforms Codable as well
// Tones
var tones = [Int : ToneSettings] (); // ToneSettings is also my custom Codable class
var musicSequence : MusicSequence? = nil; // I get the error because of this line
private enum CodingKeys: String, CodingKey {
case songName
case tempo
case tracks
case tones
}
func createMIDISequence () {
// Create MIDI sequence based on "tracks" above
// and keep it as instance variable "musicSequence"
}
}
有人有什么想法吗?