1

I want to make sqlite manager db with superscript values and data for my unit converter app in iOS sdk like this image

and like this

Recently I found this this site but unable to find correct one Any help will be appreciated thanks..

How can i Store values like as above in my Sqlite3 manager database?

Here is the problem I Wanted to display

4

1 回答 1

1

例如,

你想用 20th 和 th 在上标。首先找到t和h的unicode字符。

t = (U+1D57)

h = (U+02B0)

所以你作为字符串传入,如下所示:NSString *num = @"20\u1d57\u02b0";

要查找 unicode 字符,请使用 Mac 中的字符查看器。

于 2013-06-10T04:39:09.753 回答