//
|
// AttentionCollectionReusableView.m
|
// BuWanVideo2.0
|
//
|
// Created by weikou on 16/8/26.
|
// Copyright © 2016年 com.yeshi.buwansheque.ios. All rights reserved.
|
//
|
|
#import "AttentionCollectionReusableView.h"
|
|
@implementation AttentionCollectionReusableView
|
|
- (void)awakeFromNib {
|
[super awakeFromNib];
|
// Initialization code
|
self.AttentionImage.clipsToBounds = YES;
|
[self.AttentionButton setBackgroundImage:[UIImage imageNamed:@"已关注背景"] forState:UIControlStateSelected];
|
[self.AttentionButton setBackgroundImage:[UIImage imageNamed:@"关注背景"] forState:UIControlStateNormal];
|
}
|
|
@end
|