- (NSString *)description {
return [NSString stringWithFormat:@"Attribute %@: %@", name, [values description]];
}
이름은 문자열, 값은있는 NSArray이다. 이러한 개체 중 몇 개를 포함하는 NSArray가 있습니다. 내가 속성이 잘 작동 NSLog(@"Attribute created: %@", [newAttribute description]);
와 인쇄이를 사용하여 인쇄 할 때
: 나는있는 NSMutableArray를 만들고 여러 속성이 그 안에 객체를 배치하면,
2012-12-08 14:38:06.883 DT[25684:303] Attribute created: Attribute color: (
YELLOW,
PURPLE
)
2012-12-08 14:38:06.884 DT[25684:303] Attribute created: Attribute size: (
LARGE,
SMALL
)
그러나 내가 배열을 인쇄 할 때,이 출력을 얻을
2012-12-08 14:38:06.887 DT[25684:303] Attributes: (
"Attribute color: (\n YELLOW,\n PURPLE\n)",
"Attribute size: (\n LARGE,\n SMALL\n)",
)
왜이 문맥에서 줄 바꿈 문자가 인쇄되며, 그렇게하는 것을 막을 수 있습니까?
어떤 해결책을 찾았습니까? –
아직 해결책이 없습니까? 성가신 – taylorcressy