mirror of
https://github.com/zhigang1992/RETableViewManager.git
synced 2026-06-18 07:29:16 +08:00
Remove disabled cvv code from the example project, #99
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user