1
인라인 선언을 사용하여 b2Vec2 배열의 배열을 만들려고합니다. 지금은 ...Objective-C 클래스를 사용한 인라인 배열 선언
NSMutableArray *array = [[NSMutableArray alloc] init];
b2Vec2 temp1[] = {
*new b2Vec2(1,1),
*new b2Vec2(0,0)
};
[array addObject:(id)temp1];
b2Vec2 temp2[] = {
*new b2Vec2(1,1),
*new b2Vec2(0,0)
};
[array addObject:(id)temp2];
b2Vec2 temp3[] = {
*new b2Vec2(1,1),
*new b2Vec2(0,0)
};
[array addObject:(id)temp3];
내가 addObject 메서드 호출로 TEMP1, TEMP2 및 TEMP3 선언 인라인을 얻을 수있는 방법이 있나요? 이게 뭔가 ...
[array addObject:<some inline array instantiation>];
[array addObject:<some inline array instantiation>];
[array addObject:<some inline array instantiation>];
고마워요!