22 lines
327 B
C
22 lines
327 B
C
|
|
//
|
||
|
|
// MATableViewAdPlacerCell.h
|
||
|
|
// AppLovinSDK
|
||
|
|
//
|
||
|
|
// Created by Ritam Sarmah on 2/18/22.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface MATableViewAdPlacerCell : UITableViewCell
|
||
|
|
|
||
|
|
/**
|
||
|
|
* A container view for a native ad.
|
||
|
|
*/
|
||
|
|
@property (nonatomic, strong) UIView *containerView;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|