AI-powered mobile advertising for iOS. Maximize revenue with intelligent ad optimization and real-time bidding.
# Add to your Podfile
pod 'CloudXCore'pod installimport CloudXCore
// 1. Initialize (in AppDelegate)
// testMode: false = production, true = test ads
CloudXCore.shared.initializeSDK(appKey: "YOUR_APP_KEY", testMode: false) { success, error in
print(success ? "Ready!" : "Error: \(error!)")
}
// 2. Create banner ad (in ViewController)
let banner = CloudXCore.shared.createBanner(
withPlacement: "YOUR_PLACEMENT_ID",
viewController: self,
delegate: self,
tmax: 10.0
)
view.addSubview(banner)That's it. You're monetizing.
Everything you need is in our docs →
Detailed guides for every step:
- Installation Guide - Setup, requirements, Info.plist configuration
- Quickstart Guide - All ad formats with code examples
- Configuration Guide - Privacy, targeting, advanced features
- AI-Optimized Yield - Intelligent ad selection maximizes your revenue
- Multiple Ad Formats - Banner, MREC, interstitial, and rewarded video
- Real-Time Bidding - Server-side header bidding with dynamic optimization
- Privacy First - GDPR, CCPA, and ATT compliant out of the box
- SwiftUI Ready - Works seamlessly with UIKit and SwiftUI
- Lightning Fast - Optimized for performance and user experience
If using CocoaPods with Xcode 15+, disable User Script Sandboxing:
- Select your project target
- Build Settings → Search "User Script Sandboxing"
- Set ENABLE_USER_SCRIPT_SANDBOXING to No
This is required for all iOS SDKs using dynamic frameworks.
Load any ad format in 3 lines:
// Banner (320×50)
let banner = CloudXCore.shared.createBanner(withPlacement: "...", viewController: self, delegate: self)
// Interstitial
let interstitial = CloudXCore.shared.createInterstitial(withPlacement: "...", viewController: self, delegate: self)
// Rewarded
let rewarded = CloudXCore.shared.createRewarded(withPlacement: "...", viewController: self, delegate: self)→ See complete examples in the Quickstart Guide
pod 'CloudXCore' # Core SDK (required)
pod 'CloudXMetaAdapter' # Meta Audience Network
pod 'CloudXVungleAdapter' # Vungle
pod 'CloudXRenderer' # Creative rendererdemo-app-swift/- Swift example appdemo-app-objc/- Objective-C example app
Both include all ad formats, privacy controls, and best practices.
- iOS 14.0+
- Xcode 15.3+
- Swift 5.9+ or Objective-C
- CocoaPods 1.10+ or Swift Package Manager
- 📖 Documentation - docs.cloudx.io/ios
- 💬 Support - hello@cloudx.io
- 🐛 Issues - GitHub Issues
- 📊 Dashboard - app.cloudx.io
Start monetizing in minutes
Read the Documentation →