123456789101112131415161718192021222324252627282930 |
- #import <UIKit/UIKit.h>
- @class PPImageScrollingTableViewCell;
- @protocol PPImageScrollingTableViewCellDelegate <NSObject>
- - (void)scrollingTableViewCell:(PPImageScrollingTableViewCell *)scrollingTableViewCell didSelectImageAtIndexPath:(NSIndexPath*)indexPathOfImage atCategoryRowIndex:(NSInteger)categoryRowIndex;
- @end
- @interface PPImageScrollingTableViewCell : UITableViewCell
- @property (weak, nonatomic) id<PPImageScrollingTableViewCellDelegate> delegate;
- @property (nonatomic) CGFloat height;
- - (void) setImageData:(NSDictionary*) image;
- - (void) setCollectionViewBackgroundColor:(UIColor*) color;
- - (void) setCategoryLabelText:(NSString*)text withColor:(UIColor*)color;
- - (void) setImageTitleLabelWitdh:(CGFloat)width withHeight:(CGFloat)height;
- - (void) setImageTitleTextColor:(UIColor*)textColor withBackgroundColor:(UIColor*)bgColor;
- @end
|