Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
UITextField *textField; // assumed its already instantiated.
NSDictionary *dict; // assume you have a dict already with key @"key"

textField.text = [dict objectForKey: @"key"];
 
You bind to a dictionary just like you'd bind to anything else.

For example, if you have a Controller object that holds your dictionary "dict" containing a key "Name", then you'd bind to the Controller and set the Model Key Path to "dict.Name".
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.