배열에서 구조체의 값 변경 저는 구조체를 배열 안에 저장하고 구조체의 값을 for 루프에 접근하고 변경하고 싶습니다. struct testing { var value:Int } var test1 = testing(value: 6 ) test1.value = 2 // this works with no issue var test2 = testing(value: 12 ) var testings = [ test1, test2 ] for test in testings{ test.value = 3 // here I get the error:"Can not assign to 'value' in 'test'" } 구조를 클래스로 바꾸면 작동합니다.구조물의 값을 어떻게 바꿀 수 있는지 누가 말해줄 수 있나요?@MikeS..