0

我试图在我的 UILabel 中将 \f010 设置为 unicode,但它不起作用。这种格式是 Unicode Private Use Area。我该怎么做呢?这是我的设置方式:

 [homeFeedButton setTitle:@"\f010" forState:UIControlStateNormal];
4

1 回答 1

0

尝试NSString *str=[NSString stringWithFormat:@"%C",unicodestring]; // unicodestring vontains your unicode string

然后 setv 作为标题

于 2012-05-12T22:38:59.297 回答