romaonthego / RETableViewManager

Powerful data driven content manager for UITableView.
MIT License
2.48k stars 432 forks source link

Credit card cell does not work. #228

Open ordinaryman09 opened 9 years ago

ordinaryman09 commented 9 years ago

Hello,

I'm using the RETableViewManager on iOS 8, but when tapping the credit card cell, it doesn't pull up the keyboard. I tried running your sample code and the credit card cell doesnt work either.

ericertl commented 8 years ago

It's still not fixed As a workaround, I've commented the setEnabled method content in RETableViewCreditCardCell. The item for this cell appears to be nil, so it disables the userinteraction

- (void)setEnabled:(BOOL)enabled {
//    _enabled = enabled;
//    
//    self.userInteractionEnabled = _enabled;
//    
//    self.textLabel.enabled = _enabled;
//    self.creditCardField.enabled = _enabled;
//    self.expirationDateField.enabled = _enabled;
//    self.cvvField.enabled = _enabled;
}