0

Is this possible in iOS to get full history of clipboard ...

Means get whatever user copied on clipboard, full log of content..

I know we can get last content from [UIPasteboard generalPasteboard] but is there way to get full log or previous content from clipboard.

rmaddy
  • 314,917
  • 42
  • 532
  • 579
dev_m
  • 796
  • 6
  • 12

1 Answers1

0

You can access pasteboard items directly:

for item in UIPasteboard.generalPasteboard().items {
    print(item)
}
Adam
  • 26,549
  • 8
  • 62
  • 79