Slide 74
Slide 74 text
class Attribute {
var ascending:NSSortDescriptor {
return NSSortDescriptor(key: "x", ascending: true)
}
var descending:NSSortDescriptor {
return NSSortDescriptor(key: "x", ascending: true)
}
}
@infix func == (left: Attribute, right: AnyObject) -> NSPredicate {
return NSPredicate(format: "x", nil)
}