0

以下の Objective-C のメソッドを C# に変換しようとしていますが、うまくいきません。

- (void)collectionView:(UICollectionView *)collectionView moveItemAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath;

これは正しいです?

public void moveItemAtIndexPath(UICollectionView collectionView, NSIndexPathToIndexPath, NSIndexPath FromIndexPath)
4

1 に答える 1

1

これは次のとおりだと思います。

public void moveItemAtIndexPath(UICollectionView collectionView, NSIndexPath fromIndexPath, NSIndexPath toIndexPath)

ただし、「公開/保護/非公開」はすべてあなた次第です。

于 2013-11-03T20:24:16.460 に答える