是否可以将 UIActivityIndicatorView 添加到 UITableViewCell 的左侧?我们已经使用 UITableViewCell 的右侧作为显示指示器。
谢谢。
是否可以将 UIActivityIndicatorView 添加到 UITableViewCell 的左侧?我们已经使用 UITableViewCell 的右侧作为显示指示器。
谢谢。
当然。只需实例化一个 UIActivityIndicatorView,给它一个 .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];
如果您创建一个自定义单元格,您可以做任何您想做的事情。但是这个来自 Apple 的文档应该能满足你的所有需求,无论是添加子视图到常规的旧 UITableViewCell 还是创建你自己的。