この場合、どうすればstd :: stringからNSStringに変換できますか?
void Piles::imagePlacer(Card card, int xCoord, int yCoord) {
string cardType = card.toString();
UIImageView *cardImg = [[UIImageView alloc]
initWithImage:cardType];
cardImg.frame = CGRectMake(xCoord, yCoord, 126, 190);
[self.view addSubview:cardImg];
}
画像の名前として文字列を使用したい(cardTypeに格納されているすべての可能な文字列に対応する名前のUIImageのリストがあると仮定)?