0

このリンクから解析キットをダウンロードしました

Xcode 4.5を使用していて、Parse Kitプロジェクトをビルドしようとしていますが、次のような問題で終了しています。

これは、ParseKitのソースにある以下の行の問題の説明です。Format not a string literal and no format arguments. But I notice that I have not changed any just build it and run. Anybody has got the same issue?

[[NSAssertionHandler currentHandler] handleFailureInFunction:functionString file:fileString lineNumber:(NSInteger)[lineNumber longValue] description:descriptionString];
4

2 に答える 2

1

この行にnilを追加しましたが、機能します

[[NSAssertionHandler currentHandler] handleFailureInFunction:functionString file:fileString lineNumber:(NSInteger)[lineNumber longValue] description:descriptionString, nil];

メソッドがこのパラメータを取得するためです。

于 2012-11-08T15:22:46.783 に答える
0

修正は[[NSAssertionHandlercurrentHandler]handleFailureInFunction:functionString file:fileString lineNumber:(NSInteger)[lineNumber longValue] description:@ "%@"、descriptionString];

于 2014-04-23T08:04:24.003 に答える