-1
エラーが発生していますが、関数型以外の値を呼び出すことはできません。これで何が間違っていますか?非関数型の値を呼び出せません
extension FileModel {
var isPlayableMedia: Bool {
get {
return isPlayableMedia(mediaType: mediaType)
}
}
func isPlayableMedia(_ mediaType: MediaType) -> Bool {
return mediaType == MediaType.image || mediaType == MediaType.video
}
}
を呼び出しますメソッドからの引数のラベルを削除
OR ます(これはObjective-Cでも可能でしたが、Swiftではこれ以上できませんでした):https://stackoverflow.com/questions/29016524/swift-variable-with-same-as-a-method-name –