SWIFT SDK FAQ
My banner is not 640x640. How to set up the right size?
public func setDefaultBannerSize(size: String)I need to play Audio Ads along with Dialogue Ads. What I need to do?
prepare(type: .any)prepare(type: .voice)How to handle AdmanStateError state?
func admanStateDidChange(sender: Adman) {
switch (sender.state) {
case .error:
do_something()
default:
break
}
}
// to get detailed error info (if needed)
func errorReceived(err: Error) {
do_something()
}How to handle ad preloading?
How to create two instances of Adman with different regions?
How to call an ad with specific slot?
Value Name
Description
How to change the look of the DefaultView?
How to set the size of Ad View?
Preloading an ad
How to customize the look of the ad view?
How to use variables for targeting in the SDK?
Last updated