That code worked great for adding the detail view with the exception of this warning "CALayer bounds contains NaN: [nan nan; 0 0]"
When the object is edited and I hit the done button, how do I fire a delegate to notify me that the editing is complete?
I tried setting the delegate to self and adding these delegate methods:
- (void)tableViewModel:(SCTableViewModel *)tableViewModel
itemCreatedForSectionAtIndex:(NSUInteger)index item:(NSObject *)item;
- (void)tableViewModel:(SCTableViewModel *)tableViewModel
itemAddedForSectionAtIndexPath:(NSIndexPath *)indexPath item:(NSObject *)item;
- (void)tableViewModel:(SCTableViewModel *)tableViewModel
itemEditedForSectionAtIndexPath:(NSIndexPath *)indexPath item:(NSObject *)item;
but none of the methods respond to the done button click. Should I manually add a selector? How?
Thanks so much!