菜鸟教程小白 发表于 2022-12-12 23:42:34

objective-c - 使用带有 UITextView 的特定键盘的错误


                                            <p><p>我使用“单一 View ”应用程序模板启动了一个 Xcode 项目,并在 viewDidLoad 中向模板创建的 ViewController 类添加了两行:</p>

<pre><code>UITextView *textView = [ initWithFrame:CGRectInset(self.view.bounds, 10, 10)];
;
</code></pre>

<p>在模拟器中,我启用了“简体中文”“笔画”键盘。</p>

<p>当我使用 UITextView 时,切换到此键盘,并触摸 <kbd>^_^</kbd> 键,控制台出现以下错误:</p>

<pre><code>&lt;Error&gt;: CGContextSaveGState: invalid context 0x0
&lt;Error&gt;: CGContextDrawLinearGradient: invalid context 0x0
&lt;Error&gt;: CGContextSetFillColorWithColor: invalid context 0x0
&lt;Error&gt;: CGContextFillRects: invalid context 0x0
&lt;Error&gt;: CGContextFillRects: invalid context 0x0
&lt;Error&gt;: CGContextSetFillColorWithColor: invalid context 0x0
&lt;Error&gt;: CGContextFillRects: invalid context 0x0
&lt;Error&gt;: CGContextSaveGState: invalid context 0x0
&lt;Error&gt;: CGContextDrawLinearGradient: invalid context 0x0
&lt;Error&gt;: CGContextSetFillColorWithColor: invalid context 0x0
&lt;Error&gt;: CGContextFillRects: invalid context 0x0
&lt;Error&gt;: CGContextFillRects: invalid context 0x0
&lt;Error&gt;: CGContextSetFillColorWithColor: invalid context 0x0
&lt;Error&gt;: CGContextFillRects: invalid context 0x0
</code></pre>

<p>这是一个错误吗?我应该担心吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我已经在 iOS 6.0 模拟器和运行 iOS 6.0.1 的 iPhone 4S 上重现了该错误,但在 iOS 5.0 模拟器中没有发生。这是 iOS 6 中的一个错误。您应该在 <a href="http://bugreport.apple.com" rel="noreferrer noopener nofollow">http://bugreport.apple.com</a> 上打开一个错误报告。 .</p>

<p>也就是说,它似乎不是特别有害,所以我不会担心。</p></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 使用带有 UITextView 的特定键盘的错误,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/13352501/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/13352501/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 使用带有 UITextView 的特定键盘的错误