在这种情况下,如何从 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];
}
我想使用一个字符串作为图像的名称(假设我在某处有一个 UIImages 列表,其名称对应于存储在 cardType 中的所有可能的字符串)?