WLCardViewLayout 0.2.0

WLCardViewLayout 0.2.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Feb 2016

Maintained by HotWordland.



  • By
  • 巫龙

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

WLCardViewLayout is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "WLCardViewLayout"

效果

使用

在可视化编辑里:

然后关联cardlayout至Controller:

@property (weak, nonatomic) IBOutlet WLCardViewLayout *cardLayout;
- (void)viewDidLoad {
[super viewDidLoad];
[self.cardLayout setSwipeToDeleteDelegate:self];
}

//CollectView数据源代理 

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
return 1;
}
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
return list.count;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{

UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"CardCell" forIndexPath:indexPath];
UIImageView *im = [cell viewWithTag:100];
[im setImage:[UIImage imageNamed:list[indexPath.section]]];
return cell;
}


//swipe删除数据源代理

-(void)swipeToDeleteLayout:(WLCardViewLayout *)layout didDeleteCellAtIndexPath:(NSIndexPath *)indexPath{
[list removeObjectAtIndex:indexPath.section];
}

Author

巫龙, [email protected]

License

WLCardViewLayout is available under the MIT license. See the LICENSE file for more info.