iPhone SDK简单问题

时间:2010-08-18 19:53:50

标签: iphone objective-c uitableview uiactivityindicatorview

是否可以在UITableViewCell的左侧添加UIActivityIndi​​catorView?我们已经使用UITableViewCell的右侧作为披露指标。

感谢。

2 个答案:

答案 0 :(得分: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];

答案 1 :(得分:0)

如果您创建自定义单元格,则可以执行任何操作。但是this document here from Apple应该为您提供所需的一切,无论是将子视图添加到常规的旧UITableViewCell还是创建自己的UITableViewCell。