<!--
{
  "availability" : [
    "iOS: 5.0.0 -",
    "iPadOS: 5.0.0 -",
    "macCatalyst: 13.1.0 -",
    "macOS: 10.7.0 -",
    "tvOS: 9.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Foundation",
  "identifier" : "/documentation/Foundation/NSFileVersion/isResolved",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Property",
  "symbol" : {
    "kind" : "Instance Property",
    "modules" : [
      "Foundation"
    ],
    "preciseIdentifier" : "c:objc(cs)NSFileVersion(py)resolved"
  },
  "title" : "isResolved"
}
-->

# isResolved

A Boolean value that indicates if the version object is in conflict or not.

```
var isResolved: Bool { get set }
```

## Discussion

When the system detects a conflict involving versions of a file, it sets this property to <doc://com.apple.documentation/documentation/Swift/false> to indicate an unresolved conflict. After you resolve the conflict, set this property to <doc://com.apple.documentation/documentation/Swift/true> to tell the system it is resolved; you must then remove any versions of the file that are no longer useful.

> Important:
> If you do not explicitly remove versions of a file that are no longer useful, iCloud continues to sync them to all a user’s devices and those versions continue to consume user iCloud quota.

To remove an unused version of a file, call the [`remove()`](/documentation/Foundation/NSFileVersion/remove()) method. To remove all unused versions of a file, call the [`removeOtherVersionsOfItem(at:)`](/documentation/Foundation/NSFileVersion/removeOtherVersionsOfItem(at:)) method.

> Important:
> Never set the value of this property to <doc://com.apple.documentation/documentation/Swift/false>. If you do, the system raises an exception.

Resolving a conflict causes the file version object to be removed from any reports about conflicting versions, such as those returned by the [`unresolvedConflictVersionsOfItem(at:)`](/documentation/Foundation/NSFileVersion/unresolvedConflictVersionsOfItem(at:)) method.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)