PPCollectionViewCell.h 500 B

1234567891011121314151617
  1. //
  2. // PPCollectionViewCell.h
  3. // PPImageScrollingTableViewControllerDemo
  4. //
  5. // Created by popochess on 13/8/10.
  6. // Copyright (c) 2013年 popochess. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PPCollectionViewCell : UICollectionViewCell
  10. - (void)setImage:(UIImage*) image;
  11. - (void)setTitle:(NSString*) title;
  12. - (void) setImageTitleLabelWitdh:(CGFloat)width withHeight:(CGFloat)height;
  13. - (void) setImageTitleTextColor:(UIColor*)textColor withBackgroundColor:(UIColor*)bgColor;
  14. @end