[imageView bind: @"valuePath" toObject: imagesController withKeyPath: @"selection.fullPath" options: nil];In Interface Builder, "Bind To" corresponds toimagesController
, "Controller Key" would beselection
, and "Model Key Path would befullPath
.Use
[imageView unbind: @"valuePath"];to remove a binding.