คู่มือนี้จะแสดงแนวทางปฏิบัติแนะนำเกี่ยวกับวิธีเขียนโค้ดแอปให้แสดงผลโฆษณาอย่างถูกต้องใน iPhone X
ข้อกำหนดเบื้องต้น
- นําเข้า SDK โฆษณาในอุปกรณ์เคลื่อนที่ของ Google เวอร์ชัน 7.26.0 ขึ้นไปแยกต่างหากหรือเป็นส่วนหนึ่งของ Firebase
แบนเนอร์โฆษณา
โฆษณาแบนเนอร์ต้องอยู่ใน"พื้นที่ปลอดภัย" เพื่อหลีกเลี่ยงการถูกบดบังโดยมุมโค้งมน พื้นที่เซ็นเซอร์ และปุ่มโฮมเสมือน ในหน้านี้ คุณจะเห็นตัวอย่างวิธีเพิ่มข้อจำกัดในการวางตําแหน่งแบนเนอร์ไว้ที่ด้านบนหรือด้านล่างของพื้นที่ปลอดภัย
สตอรีบอร์ด/Interface Builder
หากแอปใช้ Interface Builder ก่อนอื่นให้ตรวจสอบว่าคุณได้เปิดใช้ไกด์เลย์เอาต์ของ "พื้นที่ปลอดภัย" แล้ว ซึ่งคุณต้องใช้ Xcode 9 ขึ้นไปและกำหนดเป้าหมายเป็น iOS 9 ขึ้นไป
เปิดไฟล์ Interface Builder แล้วคลิกฉาก View Controller คุณจะเห็นตัวเลือกเอกสาร Interface Builder ทางด้านขวา เลือกใช้คู่มือเลย์เอาต์พื้นที่ปลอดภัย และตรวจสอบว่าคุณกำลังสร้างแอปสำหรับ iOS 9.0 ขึ้นไปเป็นอย่างน้อย
เราขอแนะนำให้คุณจำกัดขนาดแบนเนอร์ให้เป็นไปตามที่กำหนดโดยใช้ข้อจำกัดความกว้างและความสูง
ตอนนี้คุณสามารถจัดแนวแบนเนอร์ให้อยู่ด้านบนของพื้นที่ปลอดภัยได้โดยจำกัดพร็อพเพอร์ตี้ด้านบนของ GADBannerView ไว้ที่ด้านบนของพื้นที่ปลอดภัย ดังนี้
ในทํานองเดียวกัน คุณสามารถจัดแนวแบนเนอร์ให้อยู่ด้านล่างของพื้นที่ปลอดภัยได้โดยจำกัดพร็อพเพอร์ตี้ด้านล่างของ GADBannerView ให้อยู่ด้านล่างของพื้นที่ปลอดภัย ดังนี้
ตอนนี้ข้อจำกัดควรมีลักษณะคล้ายกับภาพหน้าจอด้านล่าง (ขนาด/ตำแหน่งอาจแตกต่างกันไป)
ViewController
ต่อไปนี้คือตัวอย่างโค้ดตัวควบคุมมุมมองแบบง่ายที่ทํางานขั้นต่ำที่จําเป็นเพื่อแสดงแบนเนอร์ใน GADBannerView
ตามที่กําหนดค่าไว้ในสตอรี่บอร์ดด้านบน
Swift
class ViewController: UIViewController { /// The banner view. @IBOutlet var bannerView: GADBannerView! override func viewDidLoad() { super.viewDidLoad() // Replace this ad unit ID with your own ad unit ID. bannerView.adUnitID = "ca-app-pub-3940256099942544/2934735716" bannerView.rootViewController = self bannerView.load(GADRequest()) } }
Objective-C
@interface ViewController() @property(nonatomic, strong) IBOutlet GADBannerView *bannerView; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Replace this ad unit ID with your own ad unit ID. self.bannerView.adUnitID = @"ca-app-pub-3940256099942544/2934735716"; self.bannerView.rootViewController = self; GADRequest *request = [GADRequest request]; [self.bannerView loadRequest:request]; }
การจัดแนวแบนเนอร์ให้อยู่ตรงขอบของพื้นที่ปลอดภัย
หากต้องการให้แบนเนอร์อยู่ทางด้านซ้ายหรือขวา ให้จำกัดขอบด้านซ้าย/ขวาของแบนเนอร์ให้อยู่ภายในขอบด้านซ้าย/ขวาของพื้นที่ปลอดภัย ไม่ใช่ขอบด้านซ้าย/ขวาของมุมมองที่ขยาย
หากคุณเปิดใช้ใช้คำแนะนำเลย์เอาต์พื้นที่ปลอดภัย เครื่องมือสร้างอินเทอร์เฟซจะใช้ขอบพื้นที่ปลอดภัยโดยค่าเริ่มต้นเมื่อเพิ่มข้อจำกัดในมุมมอง
แบบเป็นโปรแกรม
หากแอปสร้างโฆษณาแบนเนอร์แบบเป็นโปรแกรม คุณจะกําหนดข้อจํากัดและวางตําแหน่งโฆษณาแบนเนอร์ในโค้ดได้ ตัวอย่างนี้แสดงวิธีจำกัดแบนเนอร์ให้อยู่กึ่งกลางในแนวนอนที่ด้านล่างของพื้นที่ปลอดภัย
Swift
class ViewController: UIViewController { var bannerView: GADBannerView! override func viewDidLoad() { super.viewDidLoad() // Instantiate the banner view with your desired banner size. bannerView = GADBannerView(adSize: GADAdSizeBanner) addBannerViewToView(bannerView) bannerView.rootViewController = self // Set the ad unit ID to your own ad unit ID here. bannerView.adUnitID = "ca-app-pub-3940256099942544/2934735716" bannerView.load(GADRequest()) } func addBannerViewToView(_ bannerView: UIView) { bannerView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(bannerView) if #available(iOS 11.0, *) { positionBannerAtBottomOfSafeArea(bannerView) } else { positionBannerAtBottomOfView(bannerView) } } @available (iOS 11, *) func positionBannerAtBottomOfSafeArea(_ bannerView: UIView) { // Position the banner. Stick it to the bottom of the Safe Area. // Centered horizontally. let guide: UILayoutGuide = view.safeAreaLayoutGuide NSLayoutConstraint.activate( [bannerView.centerXAnchor.constraint(equalTo: guide.centerXAnchor), bannerView.bottomAnchor.constraint(equalTo: guide.bottomAnchor)] ) } func positionBannerAtBottomOfView(_ bannerView: UIView) { // Center the banner horizontally. view.addConstraint(NSLayoutConstraint(item: bannerView, attribute: .centerX, relatedBy: .equal, toItem: view, attribute: .centerX, multiplier: 1, constant: 0)) // Lock the banner to the top of the bottom layout guide. view.addConstraint(NSLayoutConstraint(item: bannerView, attribute: .bottom, relatedBy: .equal, toItem: self.bottomLayoutGuide, attribute: .top, multiplier: 1, constant: 0)) } }
Objective-C
@interface ViewController() @property(nonatomic, strong) GADBannerView *bannerView; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Instantiate the banner view with your desired banner size. self.bannerView = [[GADBannerView alloc] initWithAdSize:GADAdSizeBanner]; [self addBannerViewToView:self.bannerView]; // Replace this ad unit ID with your own ad unit ID. self.bannerView.adUnitID = @"ca-app-pub-3940256099942544/2934735716"; self.bannerView.rootViewController = self; GADRequest *request = [GADRequest request]; [self.bannerView loadRequest:request]; } #pragma mark - view positioning -(void)addBannerViewToView:(UIView *_Nonnull)bannerView { self.bannerView.translatesAutoresizingMaskIntoConstraints = NO; [self.view addSubview:self.bannerView]; if (@available(ios 11.0, *)) { [self positionBannerViewAtBottomOfSafeArea:bannerView]; } else { [self positionBannerViewAtBottomOfView:bannerView]; } } - (void)positionBannerViewAtBottomOfSafeArea:(UIView *_Nonnull)bannerView NS_AVAILABLE_IOS(11.0) { // Position the banner. Stick it to the bottom of the Safe Area. // Centered horizontally. UILayoutGuide *guide = self.view.safeAreaLayoutGuide; [NSLayoutConstraint activateConstraints:@[ [bannerView.centerXAnchor constraintEqualToAnchor:guide.centerXAnchor], [bannerView.bottomAnchor constraintEqualToAnchor:guide.bottomAnchor] ]]; } - (void)positionBannerViewAtBottomOfView:(UIView *_Nonnull)bannerView { [self.view addConstraint:[NSLayoutConstraint constraintWithItem:bannerView attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeCenterX multiplier:1 constant:0]]; [self.view addConstraint:[NSLayoutConstraint constraintWithItem:bannerView attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:self.bottomLayoutGuide attribute:NSLayoutAttributeTop multiplier:1 constant:0]]; } @end
เทคนิคข้างต้นสามารถใช้เพื่อจำกัดให้อยู่ด้านบนของพื้นที่ปลอดภัยได้โดยง่ายโดยการแก้ไขแอตทริบิวต์และจุดยึดที่ใช้
แบนเนอร์อัจฉริยะ
หากคุณใช้แบนเนอร์อัจฉริยะ โดยเฉพาะในแนวนอน เราขอแนะนำให้ใช้ข้อจำกัดเพื่อจัดแนวขอบแบนเนอร์ให้ชิดกับขอบซ้ายและขวาของพื้นที่ปลอดภัย
ใน Interface Builder ฟีเจอร์นี้ใช้ได้กับ iOS 9 ขึ้นไปโดยเลือกตัวเลือกใช้คำแนะนำเลย์เอาต์พื้นที่ปลอดภัยตามที่ระบุไว้ข้างต้น
ในโค้ด คุณควรกำหนดข้อจำกัดของขอบให้สัมพันธ์กับพื้นที่ปลอดภัยหรือคำแนะนำเลย์เอาต์ (หากมี) ต่อไปนี้คือข้อมูลโค้ดที่เพิ่มมุมมองแบนเนอร์ลงในมุมมองและจำกัดไว้ที่ด้านล่างของมุมมองแบบเต็มความกว้าง
Swift
func addBannerViewToView(_ bannerView: GADBannerView) { bannerView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(bannerView) if #available(iOS 11.0, *) { // In iOS 11, we need to constrain the view to the safe area. positionBannerViewFullWidthAtBottomOfSafeArea(bannerView) } else { // In lower iOS versions, safe area is not available so we use // bottom layout guide and view edges. positionBannerViewFullWidthAtBottomOfView(bannerView) } } // MARK: - view positioning @available (iOS 11, *) func positionBannerViewFullWidthAtBottomOfSafeArea(_ bannerView: UIView) { // Position the banner. Stick it to the bottom of the Safe Area. // Make it constrained to the edges of the safe area. let guide = view.safeAreaLayoutGuide NSLayoutConstraint.activate([ guide.leftAnchor.constraint(equalTo: bannerView.leftAnchor), guide.rightAnchor.constraint(equalTo: bannerView.rightAnchor), guide.bottomAnchor.constraint(equalTo: bannerView.bottomAnchor) ]) } func positionBannerViewFullWidthAtBottomOfView(_ bannerView: UIView) { view.addConstraint(NSLayoutConstraint(item: bannerView, attribute: .leading, relatedBy: .equal, toItem: view, attribute: .leading, multiplier: 1, constant: 0)) view.addConstraint(NSLayoutConstraint(item: bannerView, attribute: .trailing, relatedBy: .equal, toItem: view, attribute: .trailing, multiplier: 1, constant: 0)) view.addConstraint(NSLayoutConstraint(item: bannerView, attribute: .bottom, relatedBy: .equal, toItem: bottomLayoutGuide, attribute: .top, multiplier: 1, constant: 0)) }
Objective-C
- (void)addBannerViewToView:(UIView *)bannerView { bannerView.translatesAutoresizingMaskIntoConstraints = NO; [self.view addSubview:bannerView]; if (@available(ios 11.0, *)) { // In iOS 11, we need to constrain the view to the safe area. [self positionBannerViewFullWidthAtBottomOfSafeArea:bannerView]; } else { // In lower iOS versions, safe area is not available so we use // bottom layout guide and view edges. [self positionBannerViewFullWidthAtBottomOfView:bannerView]; } } #pragma mark - view positioning - (void)positionBannerViewFullWidthAtBottomOfSafeArea:(UIView *_Nonnull)bannerView NS_AVAILABLE_IOS(11.0) { // Position the banner. Stick it to the bottom of the Safe Area. // Make it constrained to the edges of the safe area. UILayoutGuide *guide = self.view.safeAreaLayoutGuide; [NSLayoutConstraint activateConstraints:@[ [guide.leftAnchor constraintEqualToAnchor:bannerView.leftAnchor], [guide.rightAnchor constraintEqualToAnchor:bannerView.rightAnchor], [guide.bottomAnchor constraintEqualToAnchor:bannerView.bottomAnchor] ]]; } - (void)positionBannerViewFullWidthAtBottomOfView:(UIView *_Nonnull)bannerView { [self.view addConstraint:[NSLayoutConstraint constraintWithItem:bannerView attribute:NSLayoutAttributeLeading relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeLeading multiplier:1 constant:0]]; [self.view addConstraint:[NSLayoutConstraint constraintWithItem:bannerView attribute:NSLayoutAttributeTrailing relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeTrailing multiplier:1 constant:0]]; [self.view addConstraint:[NSLayoutConstraint constraintWithItem:bannerView attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:self.bottomLayoutGuide attribute:NSLayoutAttributeTop multiplier:1 constant:0]]; }
โฆษณาเนทีฟ
หากแอปปักหมุดโฆษณาเนทีฟไว้ที่ด้านบนหรือด้านล่างของหน้าจอ โฆษณาเนทีฟจะมีหลักการเดียวกับโฆษณาแบนเนอร์
ความแตกต่างที่สําคัญคือแทนที่จะเพิ่มข้อจำกัดใน GADBannerView
คุณจะต้องเพิ่มข้อจำกัดใน GADUnifiedNativeAdView
(หรือวิวที่บรรจุโฆษณา) เพื่อปฏิบัติตามหลักเกณฑ์เลย์เอาต์พื้นที่ปลอดภัย สำหรับการแสดงผลเนทีฟ เราขอแนะนำให้ระบุข้อจำกัดด้านขนาดที่ชัดเจนมากขึ้น
โฆษณาคั่นระหว่างหน้าและโฆษณาที่มีการให้รางวัล
ตั้งแต่เวอร์ชัน 7.26.0 เป็นต้นไป Google Mobile Ads SDK รองรับรูปแบบโฆษณาคั่นระหว่างหน้าและโฆษณาที่มีการให้รางวัลสําหรับ iPhone X อย่างเต็มรูปแบบ