我有下一个结构:
override var isSelected: Bool {
// Change what happens when the user selects a cell
didSet {
if self.isSelected {
self.contentView.backgroundColor = Colours.primary
} else {
self.contentView.backgroundColor = Colours.secondary
}
}
}
我不知道如何访问结构的特定值" Pix"通过" BitMap"结构,其中使用指向结构Pix的指针。 我需要从Pix结构访问特定数据,而不是内存地址。