2013-07-31 48 views
1

我使用UIWebView作爲我的html5應用程序的包裝。應用程序實現了大量的視頻流 - 並且是中等大小(JS代碼)。mobile_house_arrest [xxx] <Error>:最大打開文件數:78

當我積極地使用它,我收到了很多的錯誤:

Jul 31 13:21:34 iPad mobile_house_arrest[483] <Error>: Max open files: 78 

Jul 31 13:21:34 iPad mobile_house_arrest[485] <Error>: Max open files: 78 

... 

Jul 31 13:21:35 iPad mobile_house_arrest[505] <Error>: Max open files: 78 

在設備的控制檯 - 與它停止響應。同時它在同一設備上的Safari瀏覽器中效果很好。

是否有任何已知的內存泄漏問題或我可以應用的更好的解決方法?

+0

下載大量數據時,相同的日誌 –

+1

的「mobile_house_arrest」的問題在這裏discused: http://stackoverflow.com/questions/13127796/running-app-on- iPhone4的 - 從 - Xcode的,失敗 – Matt

回答

0

你可能在使用「的fopen」或「NSFileHandle」 ..等創建文件句柄,但你沒有適當關閉它們(例如,如果你正在使用FILE * fopen (const char * filename, const char * mode),那麼你應該關閉使用fclose (FILE * stream)文件)」。只有最大78個文件。可以在iPhone設備上同時打開

相關問題