1- Regarding the PhotoPicker, how do you implement this functionality? Did you inherit from SCTableViewCell and created something like SCPhotoPickerCell? If not, would you like us to develop such functionality?
2- Both SCObjectSection and SCObjectCell have a property called boundObject that provides a reference to your managed object. If you are using an SCArrayOfObjectsSection, then you can use the following SCTableViewModelDelegate to do what you want:
- (void)tableViewModel:(SCTableViewModel *)tableViewModel detailViewWillAppearForSectionAtIndex:(NSUInteger)index withDetailTableViewModel:(SCTableViewModel *)detailTableViewModel
{
SCObjectSection *detailSection = [detailTableViewModel sectionAtIndex:0];
NSManageObject *myManagedObject = detailSection.boundObject;
// Set your managed object's attributes normally here
...
}