tableViewCell textField の正しいフレームを取得できないのはなぜですか?
myCustomCell には leftDetailTF と rightDetailTF テキストフィールドがあります。
以下のログ ステートメントは、タップしたセル/テキスト フィールドに関係なく、同じ rect 座標を生成します。ログ: フレーム = {{470, 1}, {200, 24}}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
myCustomCell *cell = (myCustomCell*)[tableView cellForRowAtIndexPath:indexPath];
NSLog(@"Frame = %@",NSStringFromCGRect(cell.rightDetailTF.frame));