I’m using Parse.com’s PFQueryTableView.
Is there any way I can use didselect row to programatically send a PFObject (url) to a UIWebview ?
Thanks.
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 anyone is interested they can download and implement SVWebViewController.
And use the following code.
My .H file has the following.
My .m file has the following.
…
// Retrieve objects from parse in background and store into NSArray. ( I stored mine in ArrayDataDesription )
//Then store the array you got from parse ( ArrayDataDesription ) into sectionsArray so that you can access it in didSelectRow using the following..
Then in didSelectRow initiate SVModalWebViewController..
For “initWithAddress:” access the url from your array.
BTW I’m a noob at developing apps. Sooo… this may NOT be the best way to do this. But, it worked for me.