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