<!--
{
  "availability" : [
    "iOS: 16.0.0 -",
    "iPadOS: 16.0.0 -",
    "macCatalyst: 16.0.0 -",
    "tvOS: -",
    "visionOS: 1.0.0 -",
    "watchOS: -"
  ],
  "documentType" : "symbol",
  "framework" : "UIKit",
  "identifier" : "/documentation/UIKit/UINavigationItemRenameDelegate-96g5t",
  "metadataVersion" : "0.1.0",
  "role" : "Protocol",
  "symbol" : {
    "kind" : "Protocol",
    "modules" : [
      "UIKit"
    ],
    "preciseIdentifier" : "c:objc(pl)UINavigationItemRenameDelegate"
  },
  "title" : "UINavigationItemRenameDelegate"
}
-->

# UINavigationItemRenameDelegate

Methods an object implements to rename a navigation item.

```
@protocol UINavigationItemRenameDelegate <NSObject>
```

## Overview

A navigation item ([`UINavigationItem`](/documentation/UIKit/UINavigationItem)) uses this delegate to determine whether a person can change the navigation item’s title and to handle the rename process.

> Related Sessions from WWDC22:
> Session 10069: [Meet desktop-class iPad](https://developer.apple.com/wwdc22/10069)
> 
> Session 10070: [Build a desktop-class iPad app](https://developer.apple.com/wwdc22/10070)

## Topics

### Determining rename support

[`- (BOOL) navigationItemShouldBeginRenaming:(UINavigationItem *) navigationItem;`](/documentation/UIKit/UINavigationItemRenameDelegate-96g5t/navigationItemShouldBeginRenaming:)

Asks the delegate whether the navigation item supports renaming.

[`- (BOOL) navigationItem:(UINavigationItem *) navigationItem shouldEndRenamingWithTitle:(NSString *) title;`](/documentation/UIKit/UINavigationItemRenameDelegate-96g5t/navigationItem:shouldEndRenamingWithTitle:)

Asks the delegate whether to continue or abandon the rename process.

### Handling the rename process

[`- (NSString *) navigationItem:(UINavigationItem *) navigationItem willBeginRenamingWithSuggestedTitle:(NSString *) title selectedRange:(NSRange *) selectedRange;`](/documentation/UIKit/UINavigationItemRenameDelegate-96g5t/navigationItem:willBeginRenamingWithSuggestedTitle:selectedRange:)

Tells the delegate when the rename process starts.

[`- (void) navigationItem:(UINavigationItem *) navigationItem didEndRenamingWithTitle:(NSString *) title;`](/documentation/UIKit/UINavigationItemRenameDelegate-96g5t/navigationItem:didEndRenamingWithTitle:)

Tells the delegate when the rename process ends.

## Relationships

### Conforming Types

[`UIDocument`](/documentation/UIKit/UIDocument)

[`UIManagedDocument`](/documentation/UIKit/UIManagedDocument)

---

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)