How to display data from SQLite to label using FMDB like this:

I would like to display whatever the output is in this format for the user to see. No Interaction. Only display for the select query.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to add
UILabelobjects, just iterate through your result set, adding labels to your view. Something like:I just typed that in, so I’m sure there are typos in there, but hopefully it’s enough to give you an idea of what it could look like. If there are too many rows to fit on a screen, you would add a scrollview to your view, and then add the labels as a subview to that.
I also think the tableview is a wonderful approach. Or dynamically built a HTML string that you show in a
UIWebView. Tons of options here. It depends a little upon what your ultimate goal is here, the nature of the data, what sort of user interaction you want.