1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #import "XLFormDescriptorCell.h"
- #import "XLFormViewController.h"
- #import <UIKit/UIKit.h>
- @class XLFormViewController;
- @class XLFormRowDescriptor;
- @interface XLFormBaseCell : UITableViewCell<XLFormDescriptorCell>
- @property (nonatomic, weak) XLFormRowDescriptor * rowDescriptor;
- -(XLFormViewController *)formViewController;
- @end
- @protocol XLFormReturnKeyProtocol
- @property UIReturnKeyType returnKeyType;
- @property UIReturnKeyType nextReturnKeyType;
- @end
|