3

我想在从一个 UITableView1 导航到另一个 UITableView2 时显示一个活动指示器,并在表完全加载时停止。

我正在使用 XML 解析来获取 UITableView2 的单元格内容。

4

1 回答 1

8

以下代码可以帮助您...

在 UITableView2 的 .h 文件中:

声明变量

UIActivityIndicatorView *progressInd;

创建属性

@property (nonatomic, retain) UIActivityIndicatorView *progressInd;

并声明方法

- (UIActivityIndicatorView *)progressInd;

在 UITableView2 的 .m 文件中:

@synthesize progressInd;

定义这个方法(调整 x,y,width,width 位置)

- (UIActivityIndicatorView *)progressInd {
if (progressInd == nil)
{
    CGRect frame = CGRectMake(self.view.frame.size.width/2-15, self.view.frame.size.height/2-15, 30, 30);
    progressInd = [[UIActivityIndicatorView alloc] initWithFrame:frame];
    [progressInd startAnimating];
    progressInd.activityIndicatorViewStyle = UIActivityIndicatorViewStyleGray;
    [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;
}

- (void)viewDidLoad您的解析开始的方法中

[self.view addSubview:self.progressInd];

在解析结束的地方使用以下行

[self.progressInd removeFromSuperview];
于 2010-01-28T10:16:01.277 回答