0
我正在使用sqlite數據庫保存來自我們xib的數據。 當我第一次添加時,它添加成功,但是當我重複該過程時,它顯示運行時異常並退出程序,並顯示變量不是CFString。錯誤:變量不是CFString
我正在使用sqlite數據庫保存來自我們xib的數據。 當我第一次添加時,它添加成功,但是當我重複該過程時,它顯示運行時異常並退出程序,並顯示變量不是CFString。錯誤:變量不是CFString
難說不看代碼,但如果this thread is any indication:
I believe the issue is that the array enumeration is doing an implicit cast to the enumerator variable type (
NSString *
, in this case), but the object(s) in the array aren't actuallyNSString *
. When the 'rangeOfString' method is called on the object, the exception is raised.
即使你的代碼不包括具體的問題,它很可能有CFString
相關的一些轉換問題。
添加一些相關的代碼和錯誤記錄可能會幫助你很多。 – 2010-05-31 06:32:50