当用户按下tableView上的任何单元格时,如何显示popover View?

时间:2011-02-23 02:29:33

标签: xcode ipad uitableview ios4 uipopovercontroller

我想当用户按下ipad上的tableView中的每个单元格,然后它会显示带有详细数据的popoverView ..

但是在这个委托中: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {}

我无法使用发件人让popoverView显示出来...... 或者我如何使用发件人来显示popoverView?

提前致谢...

迷你

1 个答案:

答案 0 :(得分:3)

您可以通过向tableView

发送以下消息来检索单元格
- (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath

或者,如果您只想获得CGRect,请使用以下方法

- (CGRect)rectForRowAtIndexPath:(NSIndexPath *)indexPath