เริ่มต้นการทำงานของ Audience Network SDK สำหรับ iOS

จำเป็นต้องมีการเริ่มต้นทำงานของ Audience Network SDK สำหรับ iOS อย่างชัดแจ้ง

หลังจากที่คุณได้ตั้งค่า SDK สำเร็จแล้ว คุณต้องเริ่มต้นการทำงานของ SDK

  1. เปิดไฟล์โปรเจ็กต์ของคุณ (หรือพื้นที่ทำงานหากคุณใช้ CocoaPods)
  2. เพิ่มส่วนย่อยของโค้ดต่อไปนี้ใน App Delegate ของคุณ
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {

	FBAudienceNetworkAds.initialize(with: nil, completionHandler: nil)

	// Pass user's consent after acquiring it. For sample app purposes, this is set to YES.
	FBAdSettings.setAdvertiserTrackingEnabled(true)

	// Your app initialization logic goes here...
	return true
}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary<NSString *, id> *)launchOptions
{
[FBAudienceNetworkAds initializeWithSettings:nil completionHandler:nil];

// Pass user's consent after acquiring it. For sample app purposes, this is set to YES.
[FBAdSettings setAdvertiserTrackingEnabled:YES];

// Your app initialization logic goes here...

return YES;
}