我使用“单一 View ”应用程序模板启动了一个 Xcode 项目,并在 viewDidLoad 中向模板创建的 ViewController 类添加了两行:
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectInset(self.view.bounds, 10, 10)];
[self.view addSubview:textView];
在模拟器中,我启用了“简体中文”“笔画”键盘。
当我使用 UITextView 时,切换到此键盘,并触摸 ^_^ 键,控制台出现以下错误:
<Error>: CGContextSaveGState: invalid context 0x0
<Error>: CGContextDrawLinearGradient: invalid context 0x0
<Error>: CGContextSetFillColorWithColor: invalid context 0x0
<Error>: CGContextFillRects: invalid context 0x0
<Error>: CGContextFillRects: invalid context 0x0
<Error>: CGContextSetFillColorWithColor: invalid context 0x0
<Error>: CGContextFillRects: invalid context 0x0
<Error>: CGContextSaveGState: invalid context 0x0
<Error>: CGContextDrawLinearGradient: invalid context 0x0
<Error>: CGContextSetFillColorWithColor: invalid context 0x0
<Error>: CGContextFillRects: invalid context 0x0
<Error>: CGContextFillRects: invalid context 0x0
<Error>: CGContextSetFillColorWithColor: invalid context 0x0
<Error>: CGContextFillRects: invalid context 0x0
这是一个错误吗?我应该担心吗?
Best Answer-推荐答案 strong>
我已经在 iOS 6.0 模拟器和运行 iOS 6.0.1 的 iPhone 4S 上重现了该错误,但在 iOS 5.0 模拟器中没有发生。这是 iOS 6 中的一个错误。您应该在 http://bugreport.apple.com 上打开一个错误报告。 .
也就是说,它似乎不是特别有害,所以我不会担心。
关于objective-c - 使用带有 UITextView 的特定键盘的错误,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/13352501/
|