// // PPImageScrollingCellView.h // PPImageScrollingTableViewDemo // // Created by popochess on 13/8/9. // Copyright (c) 2013年 popochess. All rights reserved. // #import @class PPImageScrollingCellView; @protocol PPImageScrollingViewDelegate - (void)collectionView:(PPImageScrollingCellView *)collectionView didSelectImageItemAtIndexPath:(NSIndexPath*)indexPath; @end @interface PPImageScrollingCellView : UIView @property (weak, nonatomic) id delegate; - (void) setImageTitleLabelWitdh:(CGFloat)width withHeight:(CGFloat)height; - (void) setImageTitleTextColor:(UIColor*)textColor withBackgroundColor:(UIColor*)bgColor; - (void) setImageData:(NSArray*)collectionImageData; - (void) setBackgroundColor:(UIColor*)color; @end