为什么我无法为 tableViewCell 文本字段获取正确的框架?
myCustomCell 有一个 leftDetailTF 和一个 rightDetailTF 文本字段。
无论我点击什么单元格/文本字段,下面的日志语句都会生成相同的矩形坐标。日志:帧 = {{470, 1}, {200, 24}}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
myCustomCell *cell = (myCustomCell*)[tableView cellForRowAtIndexPath:indexPath];
NSLog(@"Frame = %@",NSStringFromCGRect(cell.rightDetailTF.frame));