I want to show a progress bar while my iPhone app is uploading an image to Facebook. Is it possible?
Can I do it with every FBRequest that I make? I also use FBRequest to check extended permission and sometimes takes a lot of time.
Thank you.
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.
For the progress bar there is a little hack you can do. In the
FBRequest.hfile add this line in theFBRequestDelegateprotocol:After that in the
FBRequest.mfile add this function:Now your delegate will receive a message every time more data it’s posted to the server. So basically if you implement this into your delegate you should see some activity in your log:
Let me know if you have any problems hacking this into the current Facebook SDK.