UICollectionViewLayout子类

时间:2015-04-27 21:45:18

标签: ios uicollectionview

我在故事板中创建了一个UICollectionView,并将其更改为自定义并选择了我的UICollectionViewLayout子类作为其类。

在UICollectionViewLayout子类中是以下代码。但是当我运行应用程序时,我在集合视图中看不到任何内容。我错过了什么?

SrcFile = "G:\" & i & ".mp3"
DestFile = "G:\" & new_name & ".mp3"
Set fso = CreateObject("Scripting.FileSystemObject")

If Not fso.FileExists(SrcFile) Then
    MsgBox SrcFile & " does not exist!", vbExclamation, "Source File Missing"

ElseIf Not fso.FileExists(DestFile) Then
    Call fso.MoveFile(SrcFile, DestFile)

Else
    MsgBox DestFile & file & " already exists!", vbExclamation, "Destination File Exists"

End If

Set fso = Nothing

1 个答案:

答案 0 :(得分:0)

 - (NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section;
 - (UICollectionViewCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath

这些方法来自'UICollectionViewDataSource',不应在自定义布局类中实现。