So, I have an ABRecordRef that I've defined all the necessary properties (name, number, address, image, etc). This RecordRef has been added to a ABUnknownPersonViewController...then pushed to the stack.
[[self navigationController] pushViewController:(ABUnknownPersonViewController*)controller animated:YES];
On a separate thread, I've downloaded updated information. How do I (programmatically)modify the ABRecordRef of the person being displayed by the ABUnknownPersonViewController which has already been pushed to the stack?
In the docs, I don't see any getters/setters for the ViewController. Please help.