1

私は常に HJCache を問題なく使用してきましたが、テーブルビュー内の特定のイメージセットで継続的にエラーが発生します。

2011-10-31 13:39:12.890 Koopeenveilinghuis[5576:607] moHandlerFailed HJMOHandler users:1 retains:3 2011-10-31 13:39:19.809 Koopeenveilinghuis[5576:607] HJMOHandler URLConnection failed Error Domain=NSURLErrorDomain Code=-1002 "unsupported URL" UserInfo=0x4cc9020 {NSErrorFailingURLStringKey=, NSErrorFailingURLKey=, NSLocalizedDescription=unsupported URL, NSUnderlyingError=0x4cbfed0 "unsupported URL"} 2011-10-31 13:39:19.811 Koopeenveilinghuis[5576:607] moHandlerFailed HJMOHandler users:2 retains:4 2011-10-31 13:39:19.823 Koopeenveilinghuis[5576:607] moHandlerFailed HJMOHandler users:2 retains:4 2011-10-31 13:39:32.106 Koopeenveilinghuis[5576:607] HJMOHandler URLConnection failed Error Domain=NSURLErrorDomain Code=-1002 "unsupported URL" UserInfo=0x4ccc0e0 {NSErrorFailingURLStringKey=, NSErrorFailingURLKey=, NSLocalizedDescription=unsupported URL, NSUnderlyingError=0x4ccc110 "unsupported URL"} 2011-10-31 13:39:32.111 Koopeenveilinghuis[5576:607] moHandlerFailed HJMOHandler users:1 retains:3

画像は、セルのカップルごとに重なります。

4

1 に答える 1

5

NSURLErrorUnsupportedURL
適切に形成されたURLをフレームワークで処理できない場合に返されます。最も可能性の高い原因は、URLに使用可能なプロトコルハンドラーがないことです。

No mistery there, the URL lacks a supported protocol. This happens because the protocol is not supported, or because the URL is missing completely. Since NSErrorFailingURLStringKey is empty, the later seems to be the case.

于 2011-10-31T12:46:14.333 に答える