จำเป็นต้องมีการเริ่มต้นทำงานของ Audience Network SDK สำหรับ iOS อย่างชัดแจ้ง
หลังจากที่คุณได้ตั้งค่า SDK สำเร็จแล้ว คุณต้องเริ่มต้นการทำงานของ SDK
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
}