### Initialize Zoho PageSense SDK Source: https://context7.com/zoho/zohopagesensesdk/llms.txt Import the framework and initialize PageSense with your project ID and API token in your AppDelegate or app entry point. Ensure the framework is correctly added to your Xcode project. ```swift import PageSenseFramework @main class AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Initialize PageSense with your project credentials PageSense.initialize(projectId: "YOUR_PROJECT_ID", token: "YOUR_API_TOKEN") return true } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.