Link to home
Start Free TrialLog in
Avatar of freejointventure
freejointventureFlag for United States of America

asked on

Using SMS to populate SQLite

I need to find a way to use SMS to populate app data and update app data using local push after app data is updated.   Objective C examples, and or theory is also good.
Avatar of darbid73
darbid73
Flag of Germany image

by SMS do you mean the Short Message Service where you can send messages over the telecommunications network to other people?

Further do you want to be able to read the data stored in an iOS device on these SMS's?

If I am right so far then the answer is that Apple does not allow access to the SMS log.   Thus I doubt you are going to find some examples as they are largely useless.

That being said you can still get access to this log on an unauthorized app.  biteSMS which is a cydia app must have found a way to do it.
Avatar of freejointventure

ASKER

Ok, that makes sense, so are there other accepted methods of populating an embedded sqlite table with dynamic data?
Can you explain by way of an example what you mean by embedding.
ASKER CERTIFIED SOLUTION
Avatar of darbid73
darbid73
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
@embedded sqlite, (the database file would reside in the bundle, thanks for the tutorial links, I am just digging into this to see how I can update data and then populate that data in a UI view.