You are going to have to create a new generic array and manually populate it as follows:
var result = Type[]()
for item : AnyObject in self {
// Keep only objC objects compatible with OutType
if let converted = bridgeFromObjectiveC(item, Type.self) {
result.append(converted)
}
}