//默认选中TableView第一行,没有动画及滚动效果,动画即滚动效果通过animated,position来设定
[_leftTableview selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:NO scrollPosition:UITableViewScrollPositionNone];
//获取当前选中的cell
NSIndexPath *indexPath = [_leftTableview indexPathForSelectedRow];
UITableViewCell *cell = [_leftTableview cellForRowAtIndexPath:indexPath];
注意,在cellForRowAtIndexPath方法中是实现不了的