gpt4 book ai didi

iphone - 如何将 NSIndexpath 转换为 NSInteger 或简单的 int?

转载 作者:行者123 更新时间:2023-12-03 18:11:23 25 4
gpt4 key购买 nike

我需要将 nsindexpath var 转换为 NsInteger 或简单的 int。例如:

 int rowIndex = [mGoogleBaseTable selectedRow];
//mGoogleBaseTable is a NSTable type in Macdevelopement..

&&

int rowIndex = [mGoogleBaseTable indexPathForSelectedRow];
//mGoogleBaseTable is a UITableView type in Iphone (iOS)Development.

selectedRow 简单地返回 NSInteger,但 indexPathForSelectedRow 返回 NSIndexPath..

请帮助我如何实现这一目标。

最佳答案

如果

NSIndexPath *p = ... // some indexpath

然后

NSInteger row = p.row;
NSInteger section = p.section;

仅此而已!

关于iphone - 如何将 NSIndexpath 转换为 NSInteger 或简单的 int?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4574449/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com