---
title: isMe
framework: intents
role: symbol
role_heading: Instance Property
path: intents/inperson/isme
---

# isMe

A Boolean value indicating whether the person is the user of the device.

## Declaration

```swift
var isMe: Bool { get }
```

## Discussion

Discussion It’s essential that you set isMe to true for the current device user when creating an INPerson object for use with Messaging intents. For example, if the sender of an outgoing message is also the user of the device, set isMe to true. Similarly, when creating the recipient array for an incoming message—which should include the current device user—set isMe to true for the person in the recipient list that is the current device user, and set isMe to false for all other recipients. To set isMe, call the init(personHandle:nameComponents:displayName:image:contactIdentifier:customIdentifier:isMe:) method when creating the INPerson object.

## See Also

### Accessing the person’s identity

- [personHandle](intents/inperson/personhandle.md)
- [image](intents/inperson/image.md)
- [aliases](intents/inperson/aliases.md)
