Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Mar 7, 2021. It is now read-only.

Form — 2.0.1

Choose a tag to compare

@3lvis 3lvis released this 17 Mar 10:01
· 1014 commits to master since this release

Initializing a JSON now supports NSArray and NSDictionary. Useful when creating dynamic fields with templates

Before

- (instancetype)initWithJSON:(NSArray *)JSON
              collectionView:(UICollectionView *)collectionView
                      layout:(FORMLayout *)layout
                      values:(NSDictionary *)values
                    disabled:(BOOL)disabled;

Now

- (instancetype)initWithJSON:(id)JSON
              collectionView:(UICollectionView *)collectionView
                      layout:(FORMLayout *)layout
                      values:(NSDictionary *)values
                    disabled:(BOOL)disabled;