From 51574df153bb2917fb0a232caf73bb7c1442dc77 Mon Sep 17 00:00:00 2001 From: Roman Efimov Date: Thu, 2 May 2013 12:48:08 -0500 Subject: [PATCH] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 05876cb..c2acf0f 100644 --- a/README.md +++ b/README.md @@ -202,8 +202,12 @@ find out how default mapping is performed: [self mapObjectClass:@"RERadioItem" toTableViewCellClass:@"RETableViewCell"]; [self mapObjectClass:@"REBoolItem" toTableViewCellClass:@"RETableViewBoolCell"]; [self mapObjectClass:@"RETextItem" toTableViewCellClass:@"RETableViewTextCell"]; + [self mapObjectClass:@"RELongTextItem" toTableViewCellClass:@"RETableViewLongTextCell"]; [self mapObjectClass:@"RENumberItem" toTableViewCellClass:@"RETableViewNumberCell"]; + [self mapObjectClass:@"REFloatItem" toTableViewCellClass:@"RETableViewFloatCell"]; + [self mapObjectClass:@"REDateTimeItem" toTableViewCellClass:@"RETableViewDateTimeCell"]; [self mapObjectClass:@"RECreditCardItem" toTableViewCellClass:@"RETableViewCreditCardCell"]; + [self mapObjectClass:@"REMultipleChoiceItem" toTableViewCellClass:@"RETableViewCell"]; } ```