XHBaseCollectionViewCell.m 478 B

123456789101112131415161718192021
  1. //
  2. // XHBaseCollectionViewCell.m
  3. // MessageDisplayExample
  4. //
  5. // Created by 曾 宪华 on 14-5-20.
  6. // Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
  7. //
  8. #import "XHBaseCollectionViewCell.h"
  9. @implementation XHBaseCollectionViewCell
  10. - (id)initWithFrame:(CGRect)frame {
  11. self = [super initWithFrame:frame];
  12. if (self) {
  13. // Initialization code
  14. }
  15. return self;
  16. }
  17. @end