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

# canRedo

A Boolean value that indicates whether the manager has any actions to redo.

```
var canRedo: Bool { get }
```

## Discussion

<doc://com.apple.documentation/documentation/Swift/true> if the manager has any actions to redo, otherwise <doc://com.apple.documentation/documentation/Swift/false>.

Because any undo operation registered clears the redo stack, this method posts an [`NSUndoManagerCheckpoint`](/documentation/Foundation/NSNotification/Name-swift.struct/NSUndoManagerCheckpoint) to allow clients to apply their pending operations before testing the redo stack.

## See Also

[`redo()`](/documentation/Foundation/UndoManager/redo())

Performs the operations in the last group on the redo stack, if there are any, recording them on the undo stack as a single group.



---

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)