如何在xcode调试器中打印出int的值?

时间:2014-01-28 13:54:05

标签: ios uitableview int nsindexpath

我有一个UItableView,用户选择第一行,我的indexPath显示(0 - 0),我尝试将我的int设置为 indexPath.row 。但是,当我尝试使用 po myintname 进行记录时,它会将<nil>返回到控制台。

这就是我的代码。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"%@", indexPath);
    int tempIndexPathRow = indexPath.row;

    selectedItemIndexPathRow = tempIndexPathRow;

}

1 个答案:

答案 0 :(得分:2)

po需要一个对象(打印对象)。如果您需要int等基元的值,请仅将p myintname写入控制台。