English 中文(简体)
防止埃莫吉特征展示
原标题:Prevent Emoji Characters from Showing

我用了几个特殊的单行道,但是,由于SOS 5被代之以情感。 我怎么能够强迫展示单条码特征,而不是情感特征? 增 编

问题回答

这是一个老的问题,但在我找到答案之前,它最近困扰着我的许多问题。

就在我们想要防止成为情感后添加U0000FE0E。

例如:

@"▶"  // should be written as:
@"▶U0000FE0E"

• 采用越出的单码工程:

@"u25B6"  // should be written as:
@"u25B6U0000FE0E"

我们需要使用统法协会编码变量,防止某些特性成为情感。

该条解决了我的问题。

仅增加BFer。 我在迅速发现这项工作同样有益:

    "▶u{0000FE0E}"

几个方面提到了 Apple果私人牛肉(如果你重新成为Siber方案的一个注册成员,你可以接触到这个问题)。

如同可能的解决办法一样,它会明确地为你试图显示的任何东西打上了脚石。

将“Hiragino Mincho ProN”用于字体。 它为我工作,但不幸的是,我不得不改变观念,使事情正确。 我不得不在顶头上添加一个set子,把事情摆在SOS更新之前。

All the credit goes to Kevin Ballard who answered my post in the following discussion - Unicode characters being drawn differently in iOS5





相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签