I have an implanted Facebook in my app. When it is posting something on Facebook it is displaying a Activity Indicator wich works as it should but I want to show a checkmark when it is finished with posting. I am not sure how to do this. This is the code when it is finished with loading
- (void)request:(FBRequest *)request didReceiveResponse:(NSURLResponse *)response {
//Stop the spinner
[ActivityView removeView];
}
Look at – https://github.com/jdg/MBProgressHUD
It is very easy to use and has many examples.