我无法弄清楚如何让表情符号图标显示在我正在开发的 iPhone 应用程序中。问题是,当有人从应用程序向数据库发布内容时,它会在应用程序中显示为正方形。应用程序从表情符号应该所在的服务器获取的内容类似于 \uf604
有谁知道我做错了什么?我一直在寻找一个好的答案,但到目前为止我还没有找到任何完全相关的东西。
//more info
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:postData];
returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
self.memoArray = [returnString JSONValue];
//when adding it to the label
cell.memoLabel.text = [itemData objectForKey: @"memo"];
我发现例如'\Uf604'需要是'\U0001F604'。