并重复以下类似错误:

  • CGContextSaveGState
  • CGContextSetFlatness
  • CGContextAddPath
  • CGContextDrawPath
  • CGContextRestoreGState
  • CGContextSaveGState
  • CGContextSetFlatness
  • CGContextAddPath
  • CGContextDrawPath
  • CGContextRestoreGState
  • CGContextSetFillColorWithColor
  • CGContextSetStrokeColorWithColor
  • CGContextSetFillColorWithColor
  • CGContextSetStrokeColorWithColor
  • CGContextGetBlendMode
  • CGContextSetBlendMode
  • 和更多...

  • 在我的应用程序中,我不使用任何CGContext东西。我只有UITextViewUIButtonUILabel。尚未添加太多代码。只需通过以下方式设置UITextView的内容:
    [self.text_view setText:@"123"];
    

    如何解决错误?

    我正在使用Xcode 5.0(内部版本5A1413),iOS 7模拟器(64位Retina 4“),Mac OS X 10.8.5

    最佳答案

    尝试以下操作:在xcode中,将符号断点添加到CGPostError。 (添加符号断点,并在“符号”字段中输入CGPostError)

    当发生错误时,调试器将停止代码执行,并且您可以检查方法调用堆栈和检查参数。

    关于objective-c - CGContext无效上下文0x0,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19508048/

    10-13 09:21