2
在這種情況下,如何將std :: string轉換爲NSString?從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所有可能的串名字的地方)?