Reputation: 2084
I'm getting these weird logs while developing my app. It happens when the on-screen keyboard is appearing on screen.
AppName[1001:f803] Opening '/Users/me/Library/Application Support/iPhone Simulator/5.1/Library/Caches/com.apple.keyboards/images/1859589221' failed: 'No such file or directory' (2)
AppName[1001:f803] 'INSERT INTO store VALUES (?,?,?,?,?,?,?,?)' constraint failed (19)
Both logs appear simultaneously. And my app doesn't use core data or sqlite.
Any idea why this happen? Can I just ignore them? Should I?
Upvotes: 1
Views: 1588
Reputation: 3698
@soemarko ridwan
Try looking at Baffled by what to do to fix these errors (iOS)...any suggestions?
You may need to clear your iOS simulator cache for your keyboard.
Try deleting the /Users/your-user-name/Library/Application Support/iPhone Simulator/5.1/Library/Caches/com.apple.keyboards
directory and build again.
Obviously you will need to replace 'your-user-name', and '5.1' with the version of iOS your targeting on your simulator.
Upvotes: 1