によって私はARCを使用して、私はその値を変更できるように参照することによりindexPathに渡す方法を作成したいのです:パスNSIndexPath参照
-(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];
}
しかし、これは私にエラーを見つけていないプロパティの行を提供します。どのように私はこれに対処できますか。
もう一つの概念的な質問:もし私の目標が、メソッドに渡されたindexPathの値を変更するだけであれば、ポインタも渡せませんでしたか?ポインタを渡すのではなく、参照渡しを選択するのはなぜですか?
? –
私は変更したい2つのユニークなindexPathを渡しています – Snowman
newIndexPathは別のインデックスパスです – Snowman