By default title in UIPasteControl, it appears as Paste, but I have not found any property to modify the title.
let config = UIPasteControl.Configuration()
config.baseBackgroundColor = .brown
config.baseForegroundColor = .white
config.cornerRadius = 2.0
config.displayMode = .labelOnly
let pasteControl = UIPasteControl(configuration: config)
pasteControl.target = self
pasteConfiguration = UIPasteConfiguration(acceptableTypeIdentifiers: [
UTType.text.identifier,
UTType.image.identifier,
])