//
|
// SystemMessageCell.m
|
// BuWanVideo2.0
|
//
|
// Created by weikou2016 on 16/8/11.
|
// Copyright © 2016年 com.yeshi.buwansheque.ios. All rights reserved.
|
//
|
|
#import "SystemMessageCell.h"
|
|
@implementation SystemMessageCell
|
@synthesize isauto;
|
- (void)awakeFromNib {
|
// Initialization code
|
[super awakeFromNib];
|
isauto = NO;
|
}
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
[super setSelected:selected animated:animated];
|
|
// Configure the view for the selected state
|
}
|
|
@end
|