使用UITextView的特定键盘的Bug

时间:2012-11-12 22:19:08

标签: objective-c ios cocoa-touch uitextfield uitextview

我使用“单一视图”应用程序模板启动了一个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

这是一个错误吗?我应该担心吗?

2 个答案:

答案 0 :(得分:4)

我已经在iOS 6.0模拟器和运行iOS 6.0.1的iPhone 4S上重现了这个错误,但它不会发生在iOS 5.0模拟器中。这是iOS 6中的一个错误。您应该在http://bugreport.apple.com打开错误报告。

尽管如此,它似乎并没有特别危害,所以我不担心。

答案 1 :(得分:0)

当我启用&#39;中文 - 简化&#39;时,它也发生在iOS 7.0.3模拟器中。键盘。

但在iOS 7.1模拟器和iOS 8模拟器中消失了。