Sin descripción

FKWantBuyFooterView.m 457B

1234567891011121314151617181920212223242526
  1. //
  2. // FKWantBuyView.m
  3. // FirstLink
  4. //
  5. // Created by 施昌鹏 on 16/8/17.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import "FKWantBuyFooterView.h"
  9. @implementation FKWantBuyFooterView
  10. -(instancetype)initWithReuseIdentifier:(NSString *)reuseIdentifier {
  11. self = [super initWithReuseIdentifier:reuseIdentifier];
  12. if (self) {
  13. self.contentView.backgroundColor = UIColorFromRGB(0xf4f4f4);
  14. }
  15. return self;
  16. }
  17. @end