---
title: "Stop collecting iOS device names"
slug: "ios-stop-collecting-device-name"
updated: 2026-06-09T22:26:46Z
published: 2026-06-09T22:26:46Z
canonical: "docs.xtremepush.com/ios-stop-collecting-device-name"
stale: true
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.xtremepush.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Stop collecting iOS device names

How to turn off collection of device name for production environments

The device name (e.g. "Kim's iPhone") is collected from iOS devices (iPhone/iPad/iPod Touch). It is useful to identify your device when testing. You can see it in the individual device profiles in **Data > Devices**.

![2852](https://cdn.document360.io/b056e88b-f6c1-4bd2-b5b8-08e9336a17c9/Images/Documentation/f10d1cd-Screenshot_2021-07-05_at_13.51.07(1).png)

iOS device's name will appear under the 'Name' column.

However, you may not want to collect it in production. If so, you can turn collection off by calling the following method, before initialising XtremePush in your App Delegate.

**Swift**

```swift
XPush.setNameCollectingEnabled(false)
```

**Objective-C**

```objectivec
[XPush setNameCollectingEnabled: NO];
```

If you have turned this off then the *Name* field will appear blank for your devices.
