Khởi tạo rõ ràng Audience Network SDK dành cho iOS là yêu cầu bắt buộc.
Bạn phải khởi tạo SDK sau khi thiết lập SDK thành công.
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
}