菜鸟教程小白 发表于 2022-12-13 09:29:49

ios - 如何在 objective-c 中将通用字符名称转换为其实际值?


                                            <p><p>在我的应用程序中,我在 <code>UITextField</code> 中有中文字符串。我正在做以下事情。</p>

<pre><code>NSString *strName = realNameTextField.text;

NSLog(@&#34;result string: %@&#34;, strName);
</code></pre>

<p>预期 o/p:</p>

<blockquote>
<p>chinese string.</p>
</blockquote>

<p>得到 o/p</p>

<blockquote>
<p>\U8f93\U5165\U7528\U6237\U540d</p>
</blockquote>

<p>如何从 <code>UITextField</code> 中获取实际的中文字符串?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><pre><code>    NSString *strName = realNameTextField.text;

    const char *cString = ;


    //char cString[] = strName;
    NSData *data = ;
    NSString *string = [ initWithData:data encoding:NSUTF8StringEncoding];
    NSLog(@&#34;result string: %@&#34;, string);
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 objective-c中将通用字符名称转换为其实际值?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31792696/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31792696/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 objective-c 中将通用字符名称转换为其实际值?