6

is there any kind of notification available for when the desktop wallpaper is changed?

Thanks!

BenL0
  • 277
  • 1
  • 9

1 Answers1

2
[[NSDistributedNotificationCenter defaultCenter] addObserver:target
    selector:@selector(desktopImageChanged:)
    name:@"com.apple.desktop"
    object:@"BackgroundChanged"];

should to the job

Stefanf
  • 1,663
  • 13
  • 15