I was referring to Apple\'s Swift programming guide for understanding creation of Mutable/ immutable objects(Array, Dictionary, Sets, Data) in Swift language. But I could\'t
If you want to work with Array (Swift) as with NSArray, you can use a simple bridge function. Example:
Array
NSArray
var arr1 : Array = [] arr1.bridgeToObjectiveC().count
It works the same for let.
let