AATFeedAdOptions
@objc public class AATFeedAdOptions : NSObject {
/// Desired UIColor to be used for shutter, default is nil.
public let shutterColor: UIColor?
/// Boolean that describe if spinner should be disabled, default is false.
public let disableSpinner: Bool
/// Init AATFeedAdOptions
/// - Parameter shutterColor: Desired UIColor to be used for shutter, default is nil.
/// - Parameter disableSpinner: Boolean that describes if spinner should be disabled, default is false.
@objc public init(shutterColor: UIColor? = nil, disableSpinner: Bool = false)
}
@interface AATFeedAdOptions : NSObject
/// Init AATFeedAdOptions
/// \param shutterColor Desired UIColor to be used for shutter, default is nil.
///
/// \param disableSpinner Boolean that describes if spinner should be disabled, default is false.
///
- (nonnull instancetype)initWithShutterColor:(UIColor * _Nullable)shutterColor disableSpinner:(BOOL)disableSpinner;
@end
Last updated