Skip to content

Commit

Permalink
Removed image row key from available keys. It should be added as a cu…
Browse files Browse the repository at this point in the history
…stom cell, check it out at /Examples/Others/CustomCells.
  • Loading branch information
Martin Barreto committed Oct 16, 2014
1 parent caa91ca commit be9cbf8
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -812,6 +812,7 @@ Version 2.0.1 (master)
* Added support for storyboard reuse identifier and nib file.
* Button selection can be handled using a selector or block.
* Added addAsteriskToRequiredRowsTitle property to XLFormDescriptor. NO is used as value by default.
* Image cell has been removed because it depends on AFNetworking and now needs to be implemented as a custom cell. You can find the image custom cell in Examples/Others/CustomCells.

Version 2.0.0 (cocoaPod)

Expand Down
1 change: 0 additions & 1 deletion XLForm/XL/XLForm.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ extern NSString *const XLFormRowDescriptorTypeBooleanCheck;
extern NSString *const XLFormRowDescriptorTypeBooleanSwitch;
extern NSString *const XLFormRowDescriptorTypeButton;
extern NSString *const XLFormRowDescriptorTypeInfo;
extern NSString *const XLFormRowDescriptorTypeImage;
extern NSString *const XLFormRowDescriptorTypeStepCounter;


Expand Down
1 change: 0 additions & 1 deletion XLForm/XL/XLForm.m
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,5 @@
NSString *const XLFormRowDescriptorTypeBooleanSwitch = @"booleanSwitch";
NSString *const XLFormRowDescriptorTypeButton = @"button";
NSString *const XLFormRowDescriptorTypeInfo = @"info";
NSString *const XLFormRowDescriptorTypeImage = @"image";
NSString *const XLFormRowDescriptorTypeStepCounter = @"stepCounter";

0 comments on commit be9cbf8

Please sign in to comment.