I have a TableView. When I select a row then it starts HTML Parsing in Background thread and it shows a UIActivity Indicator on the top of tableview using a subView until parsing finishes. That activity Indicator is working fine. It appears at the center, start before parsing and stop after parsing(when background thread finishes).
Now here is the problem.
If there are more than 8 or 10 rows in tableview then user need to scroll down a little bit to select a row from tableview. If I select 10 the row then it still shows activity Indicator but it is not at the center. It moves up and appears near to the navigation bar. If I select 14th or 15th row then it works but doesn't appear at all on the screen as it moves up and crosses navigation bar.
Here is my code. I have searched on internet and tried almost all kind of "CGRectMake Frame", "Indicator.center" and possible solutions within last 4 hours but it doesn't stay at center. Can you please tell me how to fix it?
- (UIActivityIndicatorView *)progressInd {
if (progressInd == nil)
{
CGRect frame = CGRectMake(self.view.frame.size.width/2-15, self.view.frame.size.height/2-15, 30, 30);
//also tried -- CGRect frame =CGRectMake(0.0f, 0.0f, 20.0f, 20.0f);
progressInd = [[UIActivityIndicatorView alloc] initWithFrame:frame];
progressInd.center=self.view.center;
//also tried- progressInd.center=CGPointMake(160,240);
//also tried- progressInd.center=self.view.window.center;
[progressInd startAnimating];
[self.view bringSubviewToFront:progressInd];
progressInd.activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;
[progressInd sizeToFit];
progressInd.autoresizingMask = (UIViewAutoresizingFlexibleLeftMargin |
UIViewAutoresizingFlexibleRightMargin |
UIViewAutoresizingFlexibleTopMargin |
UIViewAutoresizingFlexibleBottomMargin);
progressInd.tag = 1; // tag this view for later so we can remove it from recycled table cells
}
return progressInd;
}// close - (UIActivityIndicatorView *)progressInd
[/code]
progressInd.center=self.view.window.center; should work as I took this solution from following post. Activity Indicator Center
This guy was getting the same problem and finally found the solution himself. But it is not working for me. Please note I am creating Activity Indicator by code and not using interface builder's in built indicator. Am I using "progressInd.center=self.view.window.center;" at a wrong place in my code. I also tried it just before adding the subView but that didn't work.
Please reply as soon as possible.
Thanks.