diff --git a/RETableViewManagerExample/RETableViewManagerExample/Classes/Controllers/ControlsViewController.m b/RETableViewManagerExample/RETableViewManagerExample/Classes/Controllers/ControlsViewController.m index 8607a2e..5fc8ded 100644 --- a/RETableViewManagerExample/RETableViewManagerExample/Classes/Controllers/ControlsViewController.m +++ b/RETableViewManagerExample/RETableViewManagerExample/Classes/Controllers/ControlsViewController.m @@ -14,7 +14,6 @@ @property (strong, readwrite, nonatomic) RETableViewManager *manager; @property (strong, readwrite, nonatomic) RETableViewSection *basicControlsSection; @property (strong, readwrite, nonatomic) RETableViewSection *creditCardSection; -@property (strong, readwrite, nonatomic) RETableViewSection *creditCardSectionDisabledCVV; @property (strong, readwrite, nonatomic) RETableViewSection *accessoriesSection; @property (strong, readwrite, nonatomic) RETableViewSection *cutCopyPasteSection; @property (strong, readwrite, nonatomic) RETableViewSection *buttonSection; @@ -51,7 +50,6 @@ self.basicControlsSection = [self addBasicControls]; self.creditCardSection = [self addCreditCard]; - self.creditCardSectionDisabledCVV = [self addCreditCardDisabledCVV]; self.accessoriesSection = [self addAccessories]; self.cutCopyPasteSection = [self addCutCopyPaste]; self.buttonSection = [self addButton]; @@ -235,17 +233,6 @@ return section; } -- (RETableViewSection *)addCreditCardDisabledCVV -{ - RETableViewSection *section = [RETableViewSection sectionWithHeaderTitle:@"Credit card (CVV is not required)"]; - [self.manager addSection:section]; - self.creditCardItemCVV = [RECreditCardItem item]; - self.creditCardItemCVV.cvvRequired = NO; - [section addItem:self.creditCardItemCVV]; - - return section; -} - #pragma mark - #pragma mark Accessories Example