How do I fetch the list of received SMS messages from within an iOS application?
How do I programmatically retrieve all received SMS messages on an iOS device, so that I can display them in a list (such as a table view)?开发者_如何学运维
Without being jailbroken you cannot access the SMS database.
However, if you are writing the app to work specifically on a jailbroken device, you can check out the SMS database in the /Users/Library/
; then access it as you would any other sqlite database.
精彩评论