WLCustomNativeAdTableViewCell.m 693 Bytes
//
//  WLCustomNativeAdTableViewCell.m
//  DemoApp
//
//  Created by Nick Xirotyris on 4/2/16.
//  Copyright © 2016 YC. All rights reserved.
//

#import "WLCustomNativeAdTableViewCell.h"
#import "WLInboxItem.h"

@implementation WLCustomNativeAdTableViewCell

- (void)awakeFromNib {
    [super awakeFromNib];
    // Initialization code
}

-(void)setupCustomCell:(WLInboxItem *)item {
    NSLog(@"Custom native TableView Cell setup method.");
    self.item = item;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

-(WLInboxItem *)getInboxItem{
    return self.item;
}

@end