Swiftで指定位置(index)に要素を挿入する
1 2 3 4 5 6 |
var strArray = ["Apple", "Google", "Facebook"] strArray.insert("Twitter", at: 1) print(strArray) // ["Apple", "Twitter", "Google", "Facebook"] strArray.insert("Instagram", at: 0) print(strArray) // ["Instagram", "Apple", "Twitter", "Google", "Facebook"] |
第一引数で挿入したい要素、第二引数で挿入したいindexを指定しよう。