การใช้โฆษณาเนทีฟช่วยให้คุณปรับแต่งโฆษณาได้ ซึ่งจะทําให้ผู้ใช้ได้รับประสบการณ์การใช้งานที่ดียิ่งขึ้น ประสบการณ์ของผู้ใช้ที่ดีขึ้นจะช่วยเพิ่มการมีส่วนร่วมและปรับปรุงผลตอบแทนโดยรวม
คุณควรจัดรูปแบบเลย์เอาต์โฆษณาให้ดูเป็นส่วนขยายของแอปอย่างเป็นธรรมชาติ เพื่อให้ได้รับประโยชน์สูงสุดจากโฆษณาเนทีฟ เราได้สร้างเทมเพลตโฆษณาเนทีฟเพื่อช่วยให้คุณเริ่มต้นใช้งาน
เทมเพลตเนทีฟคือมุมมองที่มีโค้ดสมบูรณ์สําหรับโฆษณาเนทีฟ ซึ่งออกแบบมาเพื่อการติดตั้งใช้งานที่รวดเร็วและการแก้ไขที่ง่ายดาย เทมเพลตเนทีฟช่วยให้คุณติดตั้งโฆษณาเนทีฟชิ้นแรกได้ในเวลาเพียงไม่กี่นาที และปรับแต่งรูปลักษณ์ได้โดยไม่ต้องใช้โค้ดมากมาย คุณสามารถวางเทมเพลตเหล่านี้ได้ทุกที่ที่ต้องการ เช่น ใน TableView ที่ใช้ในฟีดข่าว ในกล่องโต้ตอบ หรือที่อื่นๆ ในแอป
คู่มือนี้จะแสดงวิธีดาวน์โหลด รวม และใช้งานเทมเพลตเนทีฟในแอป iOS โดยระบบจะถือว่าคุณได้ใช้ SDK เพื่อโหลดโฆษณาเนทีฟเรียบร้อยแล้ว
ขนาดเทมเพลต
เทมเพลตมี 2 ขนาด ได้แก่ ขนาดเล็กและกลาง แต่ละเทมเพลตจะแสดงโดยคลาส ชั้นเรียนดังกล่าวคือ GADTSmallTemplateView
และ
GADTMediumTemplateView
ทั้ง 2 คลาสขยายเวลา GADTTemplateView
ทั้ง 2 เทมเพลตมีสัดส่วนภาพแบบคงที่ ซึ่งจะปรับขนาดให้เต็มความกว้างของมุมมองหลักก็ต่อเมื่อคุณเรียกใช้ addHorizontalConstraintsToSuperviewWidth
เท่านั้น
หากคุณไม่ได้เรียกใช้ addHorizontalConstraintsToSuperviewWidth
แต่ละเทมเพลตจะแสดงผลขนาดเริ่มต้น
GADTSmallTemplateView
เทมเพลตขนาดเล็กเหมาะสำหรับเซลล์ UICollectionView
หรือ UITableView
ในกรณีเช่นนี้ คุณสามารถใช้สำหรับโฆษณาในฟีด หรือที่ใดก็ได้ที่คุณต้องการมุมมองโฆษณาสี่เหลี่ยมผืนผ้าแบบบาง ขนาดเริ่มต้นของเทมเพลตนี้คือสูง 91 จุด กว้าง 355 จุด
GADTMediumTemplateView
เทมเพลตขนาดกลางมีไว้สำหรับการดูหน้าเว็บ 1/2 ถึง 3/4 หน้า ซึ่งเหมาะสำหรับหน้า Landing Page หรือหน้าแนะนำ แต่ก็รวมอยู่ใน UITableViews
ได้ด้วย ขนาดเริ่มต้นของเทมเพลตนี้คือความสูง 370 จุด x ความกว้าง 355 จุด
เทมเพลตทั้งหมดของเรารองรับการจัดวางอัตโนมัติ คุณจึงทดลองจัดวางได้ตามต้องการ แน่นอนว่า คุณสามารถเปลี่ยนแปลงซอร์สโค้ดและไฟล์ xib ให้เหมาะสมกับความต้องการของคุณได้
การติดตั้งเทมเพลตโฆษณาเนทีฟ
หากต้องการติดตั้งเทมเพลตเนทีฟ เพียงดาวน์โหลดไฟล์ ZIP และลากลงในโปรเจ็กต์ Xcode อย่าลืมเลือกคัดลอกรายการหากจำเป็น
การใช้เทมเพลตโฆษณาเนทีฟ
เมื่อเพิ่มโฟลเดอร์ลงในโปรเจ็กต์และรวมคลาสที่เกี่ยวข้องไว้ในไฟล์แล้ว ให้ทําตามวิธีการนี้เพื่อใช้เทมเพลต โปรดทราบว่าวิธีเดียวที่จะเปลี่ยนพร็อพเพอร์ตี้แบบอักษรและสไตล์ได้คือการใช้พจนานุกรมสไตล์ เนื่องจากตอนนี้เราจะลบล้างสไตล์ที่ตั้งค่าไว้ใน xib เอง
Objective-C
/// Step 1: Import the templates that you need. #import "NativeTemplates/GADTSmallTemplateView.h" #import "NativeTemplates/GADTTemplateView.h" ... // STEP 2: Initialize your template view object. GADTSmallTemplateView *templateView = [[NSBundle mainBundle] loadNibNamed:@"GADTSmallTemplateView" owner:nil options:nil] .firstObject; // STEP 3: Template views are just GADNativeAdViews. _nativeAdView = templateView; nativeAd.delegate = self; // STEP 4: Add your template as a subview of whichever view you'd like. // This must be done before calling addHorizontalConstraintsToSuperviewWidth. // Please note: Our template objects are subclasses of GADNativeAdView so // you can insert them into whatever type of view you’d like, and don’t need to // create your own. [self.view addSubview:templateView]; // STEP 5 (Optional): Create your styles dictionary. Set your styles dictionary // on the template property. A default dictionary is created for you if you do // not set this. Note - templates do not currently respect style changes in the // xib. NSString *myBlueColor = @"#5C84F0"; NSDictionary *styles = @{ GADTNativeTemplateStyleKeyCallToActionFont : [UIFont systemFontOfSize:15.0], GADTNativeTemplateStyleKeyCallToActionFontColor : UIColor.whiteColor, GADTNativeTemplateStyleKeyCallToActionBackgroundColor : [GADTTemplateView colorFromHexString:myBlueColor], GADTNativeTemplateStyleKeySecondaryFont : [UIFont systemFontOfSize:15.0], GADTNativeTemplateStyleKeySecondaryFontColor : UIColor.grayColor, GADTNativeTemplateStyleKeySecondaryBackgroundColor : UIColor.whiteColor, GADTNativeTemplateStyleKeyPrimaryFont : [UIFont systemFontOfSize:15.0], GADTNativeTemplateStyleKeyPrimaryFontColor : UIColor.blackColor, GADTNativeTemplateStyleKeyPrimaryBackgroundColor : UIColor.whiteColor, GADTNativeTemplateStyleKeyTertiaryFont : [UIFont systemFontOfSize:15.0], GADTNativeTemplateStyleKeyTertiaryFontColor : UIColor.grayColor, GADTNativeTemplateStyleKeyTertiaryBackgroundColor : UIColor.whiteColor, GADTNativeTemplateStyleKeyMainBackgroundColor : UIColor.whiteColor, GADTNativeTemplateStyleKeyCornerRadius : [NSNumber numberWithFloat:7.0], }; templateView.styles = styles; // STEP 6: Set the ad for your template to render. templateView.nativeAd = nativeAd; // STEP 7 (Optional): If you'd like your template view to span the width of your // superview call this method. [templateView addHorizontalConstraintsToSuperviewWidth]; [templateView addVerticalCenterConstraintToSuperview];
คีย์พจนานุกรมสไตล์
วิธีที่เร็วที่สุดในการปรับแต่งเทมเพลตคือการสร้างพจนานุกรมด้วยคีย์ต่อไปนี้
Objective-C
/// Call to action font. Expects a UIFont. GADTNativeTemplateStyleKeyCallToActionFont /// Call to action font color. Expects a UIColor. GADTNativeTemplateStyleKeyCallToActionFontColor; /// Call to action background color. Expects a UIColor. GADTNativeTemplateStyleKeyCallToActionBackgroundColor; /// The font, font color and background color for the first row of text in the /// template. /// All templates have a primary text area which is populated by the native ad's /// headline. /// Primary text font. Expects a UIFont. GADTNativeTemplateStyleKeyPrimaryFont; /// Primary text font color. Expects a UIFont. GADTNativeTemplateStyleKeyPrimaryFontColor; /// Primary text background color. Expects a UIColor. GADTNativeTemplateStyleKeyPrimaryBackgroundColor; /// The font, font color and background color for the second row of text in the /// template. /// All templates have a secondary text area which is populated either by the /// body of the ad, or by the rating of the app. /// Secondary text font. Expects a UIFont. GADTNativeTemplateStyleKeySecondaryFont; /// Secondary text font color. Expects a UIColor. GADTNativeTemplateStyleKeySecondaryFontColor; /// Secondary text background color. Expects a UIColor. GADTNativeTemplateStyleKeySecondaryBackgroundColor; /// The font, font color and background color for the third row of text in the /// template. The third row is used to display store name or the default /// tertiary text. /// Tertiary text font. Expects a UIFont. GADTNativeTemplateStyleKeyTertiaryFont; /// Tertiary text font color. Expects a UIColor. GADTNativeTemplateStyleKeyTertiaryFontColor; /// Tertiary text background color. Expects a UIColor. GADTNativeTemplateStyleKeyTertiaryBackgroundColor; /// The background color for the bulk of the ad. Expects a UIColor. GADTNativeTemplateStyleKeyMainBackgroundColor; /// The corner rounding radius for the icon view and call to action. Expects an /// NSNumber. GADTNativeTemplateStyleKeyCornerRadius;
คำถามที่พบบ่อย
- Why do I get an exception when I try to instantiate the template object?
- ปัญหานี้อาจเกิดขึ้นหากคุณเปลี่ยนขนาดของมุมมองในไฟล์ xib แต่ไม่ได้เปลี่ยนขนาดของเฟรมที่สร้างในเมธอด "setup" ของคลาสย่อย
- ฉันจะปรับแต่งเทมเพลตเหล่านี้เพิ่มเติมได้อย่างไร
- เทมเพลตเหล่านี้เป็นเพียง xib ที่มีออบเจ็กต์มุมมองที่เชื่อมโยงกัน เช่น xib และคลาสมุมมองที่กำหนดเองอื่นๆ ที่คุณอาจคุ้นเคยจากการพัฒนา iOS หากต้องการสร้างโฆษณาเนทีฟตั้งแต่ต้น โปรดดูคู่มือเนทีฟขั้นสูง
- เหตุใดสไตล์จึงไม่อัปเดตเมื่อฉันตั้งค่าใน xib
- ปัจจุบันเราลบล้างรูปแบบ xib ทั้งหมดด้วยพจนานุกรมรูปแบบเริ่มต้นใน
GADTTemplateView.m
มีส่วนร่วม
เราได้สร้างเทมเพลตเนทีฟเพื่อช่วยให้คุณพัฒนาโฆษณาเนทีฟได้อย่างรวดเร็ว เราอยากเห็นคุณมีส่วนร่วมในที่เก็บ GitHub เพื่อเพิ่มเทมเพลตหรือฟีเจอร์ใหม่ๆ ส่งคำขอดึงข้อมูลให้เรา แล้วเราจะตรวจสอบ