在NSMutableArray中存储indexPath时,可以通过将indexPath转化为一个自定义的对象来实现。可以创建一个包含两个属性的自定义对象,一个是section(段值),一个是row(行值)。然后将indexPath的section值存储在自定义对象的section属性中,将indexPath的row值存储在自定义对象的row属性中。最后将该自定义对象添加到NSMutableArray中。
以下是一个示例代码:
// 自定义对象
@interface CustomIndexPath : NSObject
@property (nonatomic, assign) NSInteger section;
@property (nonatomic, assign) NSInteger row;
@end
@implementation CustomIndexPath
@end
// 存储indexPath
NSMutableArray *indexPathArray = [NSMutableArray array];
// 创建自定义对象并存储indexPath
CustomIndexPath *customIndexPath = [[CustomIndexPath alloc] init];
customIndexPath.section = indexPath.section;
customIndexPath.row = indexPath.row;
[indexPathArray addObject:customIndexPath];
这样,你就可以在NSMutableArray中存储indexPath,并且可以通过访问自定义对象的属性来获取存储的段值和行值。
对于这个问题,腾讯云没有特定的产品或者链接与之相关。
领取专属 10元无门槛券
手把手带您无忧上云