private NativeAd ad;
private void initAd()
{
// Создаем экземпляр NativeAd
ad = new NativeAd(YOUR_SLOT_ID, this);
// Получаем экземпляр дополнительных параметров CustomParams
CustomParams customParams = ad.getCustomParams();
// Задаем возраст
customParams.setAge(25);
// Задаем пол
customParams.setGender(CustomParams.Gender.MALE);
}
@interface YourViewController : UIViewController
@end
@implementation YourViewController
{
MTRGNativeAd *_ad;
}
- (void)initAd
{
// Создаем экземпляр MTRGNativeAd
_ad = [MTRGNativeAd nativeAdWithSlotId:YOUR_SLOT_ID];
// Задаем возраст
_ad.customParams.age = [NSNumber numberWithInt:25];
// Задаем пол
_ad.customParams.gender = MTRGGenderMale;
}
private InterstitialAd _interstitialAd;
private void Awake()
{
// Создаем экземпляр InterstitialAd
_interstitialAd = new InterstitialAd(YOUR_SLOT_ID);
// Задаем возраст
_interstitialAd.CustomParams.Age = 23;
// Задаем пол
_interstitialAd.CustomParams.Gender = CustomParams.GenderEnum.Male;
}