구조체 Struct C언어에서의 구조체를 여기서도 사용할 수 있다. ex) #import struct my_struct{ int old; int height; float weight; char* name; }; int main(int argc, const char * argv[]) { @autoreleasepool { struct my_struct man; man.name = "melong"; man.old = 24; man.height = 172; man.weight = 59.3; struct my_struct man2 = {28,165,55,"mango"}; } return 0; } ==> 결과 : 잘 돌아감. But ! 구조체 멤버로 Objective-C 타입 객체를 하나라도 넣을 경우 -> 에러 ..