In the first quarter of 2018, Apple shipped approximately 12.7 million iPhone X units, according to data from Strategy Analytics. This made the iPhone X the best-selling smartphone model worldwide during that period, surpassing the iPhone 8, iPhone 8 Plus, and every Android competitor. The figure is especially striking given the device’s $999 starting price — nearly double the average selling price of a smartphone at the time.
Context: The iPhone X Launch and Its Unconventional Design
Released in November 2017, the iPhone X marked the tenth anniversary of the iPhone line. It introduced a radical design shift: no home button, a 5.8-inch OLED display with a notch, and Face ID as the sole biometric authentication method. The removal of Touch ID was controversial among security-conscious users, but Apple bet that facial recognition, backed by the Secure Enclave and a dedicated neural engine, could be both convenient and secure. Early independent tests showed Face ID had a false-acceptance rate of roughly 1 in 1,000,000 — comparable to Touch ID’s 1 in 50,000.
Sales Breakdown: How It Outpaced Rivals
Strategy Analytics estimated total iPhone X shipments at 12.7 million units for Q1 2018. The iPhone 8 and 8 Plus together accounted for around 12.5 million units. Samsung’s Galaxy S9 and S9+, launched in March 2018, sold about 10.7 million units combined. Among the top five models, Apple held three positions: iPhone X, iPhone 8, and iPhone 8 Plus. The remaining two were the Samsung Galaxy S9 and the Galaxy S9+.

Why Did the iPhone X Succeed Despite the High Price?
- Brand loyalty and upgrade cycle: Many iPhone users who skipped the iPhone 7 or 8 were ready for a major redesign. The iPhone X offered a clear visual differentiator.
- Supply and pent-up demand: Production delays in late 2017 meant many orders slipped into Q1 2018, inflating that quarter’s numbers.
- Display and camera quality: The OLED screen and dual-camera system with portrait lighting were top-tier at launch, appealing to content creators and photography enthusiasts.
- Face ID as a feature, not a gimmick: Despite early skepticism, Face ID worked reliably in most conditions and enabled features like Animoji and Apple Pay authentication.
What Developers Should Learn from the iPhone X Sales Data
For iOS developers, the iPhone X’s rapid adoption meant that supporting the new screen aspect ratio and safe areas became an immediate requirement. Apps that did not update their layouts to avoid the notch or the rounded corners looked outdated. Apple’s Human Interface Guidelines provided clear padding metrics, but many third-party apps lagged. By mid-2018, the App Store began rejecting apps that did not use the iPhone X launch storyboard correctly.
On the security side, the iPhone X’s reliance on Face ID introduced new attack surfaces. While the Secure Enclave processes facial data locally and never uploads it to Apple’s servers, developers had to handle biometric authentication carefully. Misuse of the LABiometryType API or failing to check for Face ID availability could lead to fallback to passcode, weakening security. Apple’s LocalAuthentication framework required developers to treat Face ID as a convenience, not a replacement for a strong password when handling sensitive data.
Face ID Security: A Double-Edged Sword for Developers
Face ID uses a dot projector to map over 30,000 invisible points on the user’s face. The data is encrypted and stored in the Secure Enclave. Unlike Touch ID, Face ID can be fooled by a sufficiently detailed mask, though Apple claims the probability is low. For developers building apps that handle financial or health data, relying solely on Face ID for authentication is risky. The recommended practice is to combine biometrics with a device-specific key stored in the Keychain, requiring both the user’s face and the cryptographic key to authorize transactions.

Network and Diagnostic Implications for IT Professionals
The iPhone X was also the first iPhone to support Gigabit-class LTE and Bluetooth 5.0. For network engineers and developers working on connectivity diagnostics, this meant higher throughput capabilities but also more complex testing scenarios. Tools like Xcode’s Network Link Conditioner and Instruments’ Network profiling became essential to simulate real-world conditions. The iPhone X’s M11 motion coprocessor also enabled better background activity tracking, which developers could use for location-aware features while respecting privacy.
Lessons for Linux and Security-Focused Developers
Even if your primary work is on Linux or Android, the iPhone X’s sales dominance in Q1 2018 highlights a broader trend: premium devices with strong security features command significant market share. The Secure Enclave architecture inspired similar hardware-backed security modules in Android devices (e.g., Titan M). For anyone building cross-platform apps, understanding how iOS handles biometric data, encryption at rest, and secure boot can inform better design choices on any platform. The iPhone X also popularized the removal of the headphone jack and the use of wireless charging, both of which affect how developers design accessories and peripherals.
How This Sales Data Influenced Later iPhone Models
Apple’s decision to release the iPhone XR and XS in 2018 was directly influenced by the iPhone X’s success. The XR offered a lower-cost entry to the full-screen design while keeping Face ID, and the XS refined the OLED display and added dual-SIM support. Developers who had already adapted to the notch and Face ID found it easier to support the subsequent models. The iPhone X also set the stage for the eventual removal of the notch in later generations, but that transition took four more years.
For those studying mobile security trends, the iPhone X’s lifecycle offers a case study in balancing user convenience with threat modeling. The device’s Secure Enclave firmware was updated regularly, and Apple patched vulnerabilities such as the "Face ID bypass via glasses" issue reported in 2019. Developers who follow Apple’s security announcements and update their apps accordingly reduce their users’ exposure to exploits.
One telling data point: in the months after the iPhone X launch, apps that supported Face ID saw a 20% reduction in authentication-related support tickets compared to those that relied solely on passcodes. That kind of user behavior shift made it clear that biometrics weren't just a gimmick — they were a practical improvement that developers couldn't afford to ignore.
