Reputation: 827
i need to convert NSString
in toCCString
.
i have NSString value form gamecenter player name . now i need to convert that in to ccstring for display in cocos2dx game.
Upvotes: 0
Views: 511
Reputation: 125
Try like this:-
NSString *gamecentername = @"Hello";
CCString *playernamename = (CCString*)[gamecentername UTF8String];
Upvotes: 1