3

私はこの問題を見てきましたが、誰も一般的な解決策を持っていないようです。私の3つのエラーは次のようになります

<Error>: CGContextSaveGState: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.

<Error>: CGContextSetStyle: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.

<Error>: CGContextRestoreGState: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context  and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update.

私のアプリはまだ実行されており、完全に正常に動作します。しかし、これについて心配する必要があるかどうかを知りたいです。

参考までに、Xcode 5.0.1 を実行しており、アプリは iOS 7 用に設定されています。エラーがポップアップする原因となるビューコントローラー上の私のライブラリは次のとおりです。

In the .h
#import <UIKit/UIKit.h>
#import "Event.h"
#import <MessageUI/MessageUI.h>
#import <EventKit/EventKit.h>
#import <EventKitUI/EventKitUI.h>

In the .m
#import "EventDetailsViewController.h"
#import "XMLReader.h"
#import <Twitter/Twitter.h>
#import "AppDelegate.h"
#import "FBShareViewController.h"
#import <MapKit/MapKit.h>

ありがとう

4

2 に答える 2

0

@Rob のアドバイスを受けて、そのようなメソッドを探しに行ったところ、悲しいことに、drawRect メソッドが呼び出されていました。コメントアウトしてコードを実行すると、viola はエラーなしで実行されました。その場で新しいコンテキストを作成しないか、私たちの側で処理する必要があるようです.

于 2013-11-11T17:15:21.477 に答える