我有一个带搜索栏和搜索结果显示控制器的UITableView:
[self.searchDisplayController.searchResultsTableView addSubview:searchIndicator];
searchIndicator.center = CGPointMake(self.view.frame.size.width / 2.0, self.view.frame.size.height / 2.0);
上面的代码将指示器放在屏幕的中央。但是我想将指示器放在框架的中心,不包括键盘。我怎么能这样做?
指标的定义如下:
@property (retain, nonatomic) IBOutlet UIActivityIndicatorView *searchIndicator;