Login
Remember
Register
Ask a Question
How to convert an NSArray to a string in Objective-C?
+2
votes
asked
Jan 15, 2022
in
C Plus Plus
by
GeorgeBell
How to convert an NSArray to a string in Objective-C?
objective-c
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 15, 2022
by
GeorgeBell
NSString * result = [[array valueForKey:
@"description"
] componentsJoinedByString:
@""
];
...