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 回答