1、通过tag值获得相应的控件
UIButton *btn = (UIButton *)[self viewWithTag:currentIndex];
通过tag值递归搜索当前self的View上的所有控件,包括自身
2、didSeclec方法中获得TableView中得相应cell
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [self tableView:tableView cellForRowAtIndexPath:indexPath]; }