Answers for "array size in swift"

4

get length of array swift

// Initialize the Array
var a = [1,2,3]

// Get the size of the array

let size = a.count
print(size)
Posted by: Guest on May-01-2020
0

swift initialize array with size

let myArraySize: Int = 42
let myArray: [Int] = [Int](repeating: 0, count: myArraySize)
Posted by: Guest on March-11-2020

Code answers related to "Swift"

Browse Popular Code Answers by Language