2015. 12. 4. 01:02ㆍMobile/IOS
String 배열
여러가지로 append 를 시킬 수 가 있다 + 사용도 가능append ,insert 가능
삭제할때도 remove여러가지 쓸 수 있다 신기~
import Foundation
var temp = ["ggari","ggari1","ggari2"]
var unTemp:[String]=[]
print("개수=\(temp.count)")
temp+=["ggari4"]
print("개수는 temp=\(temp.count)")
for item in temp { print(item)}
unTemp+=["추가"]
unTemp.insert("추가1", atIndex: 1)
unTemp.append("추가2")
for item in unTemp{print(item)}
print("삭제")
unTemp.removeFirst()
//unTemp.removeAtIndex(0)
for item in unTemp{print(item)}
Int형 배열
import Foundation
var temp = [Int]()
temp.append(1);temp.append(2);temp.append(3)
for item in temp{
print(item)
}
'Mobile > IOS' 카테고리의 다른 글
swift 언어 getset함수 메소드 만들기 (1) | 2016.03.17 |
---|---|
[Swift] 딕셔너리(Dictionary) (0) | 2016.01.27 |
Swift 반복문 및 사칙연산 (1) | 2015.11.23 |
엘캐피탄 후기 및 설치 (0) | 2015.11.16 |
IOS 오토레이아웃 (Auto Layout) (1) | 2015.11.12 |