0

是否可以将 UIActivityIndi​​catorView 添加到 UITableViewCell 的左侧?我们已经使用 UITableViewCell 的右侧作为显示指示器。

谢谢。

4

2 回答 2

2

当然。只需实例化一个 UIActivityIndi​​catorView,给它一个 .frame 将它设置在你想要的位置,将它添加为 cell.contentView 的子视图,然后调用startAnimating.

UIActivityIndicatorView *spinner = [[UIActivityIndicatorView alloc] 
    initWithFrame:CGRectMake(0,0,20,20)]; //or whatever--this will put it in the top left corner of the cell
[cell.contentView addSubview:spinner]
[spinner startAnimating];
[spinner release];
于 2010-08-18T20:37:17.443 回答
0

如果您创建一个自定义单元格,您可以做任何您想做的事情。但是这个来自 Apple 的文档应该能满足你的所有需求,无论是添加子视图到常规的旧 UITableViewCell 还是创建你自己的。

于 2010-08-18T20:36:30.007 回答