| 17 | static UITableCell* New( const std::string& tag ) { return eeNew( UITableCell, ( tag ) ); } |
| 18 | |
| 19 | static UITableCell* |
| 20 | NewWithOpt( const std::string& tag, |
| 21 | const std::function<UITextView*( UIPushButton* )>& newTextViewCb ) { |
| 22 | return eeNew( UITableCell, ( tag, newTextViewCb ) ); |
| 23 | } |
| 24 | |
| 25 | Uint32 getType() const { return UI_TYPE_TABLECELL; } |
| 26 |