NSData from Byte array in Swift

I'm trying to create an NSData var from an array of bytes. In Obj-C I might have done this: NSData *endMarker = [[NSData alloc] initWithBytes:{ 0xFF, 0xD9 }, length: 2] I can't figure out a wor...