私は ARC を使用しており、参照によって indexPath を渡すメソッドを作成して、その値を変更できるようにしたいと考えています。
-(void)configureIndexPaths:(__bridge NSIndexPath**)indexPath anotherIndexPath:(__bridge NSIndexPath**)anotherIndexPath
{
indexPath = [NSIndexPath indexPathForRow:*indexPath.row + 1 inSection:0];
anotherIndexPath = [NSIndexPath indexPathForRow:*anotherIndexPath.row + 1 inSection:0];
}
しかし、これにより、プロパティ行が見つからないというエラーが発生します。どうすればこれに対処できますか。
もう 1 つの概念的な質問: 私の目標が、メソッドに渡された indexPath の値を変更することだけである場合、ポインターで渡すこともできませんか? ポインター渡しではなく、参照渡しを選択するのはなぜですか?