Swift는 대부분의 타입이 구조체로 이루어져 있다. 구조체 (Struct) 구조체는 값(Value)타입이다. //구조체 선언 struct Sample { var tempVar1 : Int = 100; let tempVar2 : Int = 10; static var typeVar : Int = 200; // 타입 프로퍼티 func sampleFunc(){ print("Sample"); } static func sampleTypeFunc(){ // 타입 메소드 print("Type Func"); } } //구조체 사용 var tempStruct : Sample = Sample(); // 구조체 생성 tempStruct.tempVar1 = 300; // 300으로 변경. Sample.sampleTypeFun..