--- title: "Set the integratorName - iOS" url: "https://docs.adyen.com/point-of-sale/classic-library-deprecation/classic-library-integrations/ios-integration/key-steps-ios/set-the-integratorname-ios" source_url: "https://docs.adyen.com/point-of-sale/classic-library-deprecation/classic-library-integrations/ios-integration/key-steps-ios/set-the-integratorname-ios.md" canonical: "https://docs.adyen.com/point-of-sale/classic-library-deprecation/classic-library-integrations/ios-integration/key-steps-ios/set-the-integratorname-ios" last_modified: "2026-05-29T12:57:00+02:00" language: "en" --- # Set the integratorName - iOS [View source](/point-of-sale/classic-library-deprecation/classic-library-integrations/ios-integration/key-steps-ios/set-the-integratorname-ios.md) Before you begin making payments, you need to set the `IntegratorName` to the name of the company deploying cash register or Point-of-Sale solution, for example,  **Retail Consultancy Corp.** You can do this as part of the `didFinishLaunchingWithOptions` method, by setting `Adyen.sharedInstance.integratorName` to the name of the integrator. ```swift func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool { Adyen.sharedInstance().integratorName = "Retail Consultancy Corp." return true } ```