OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_BYO_TEXTFIELD_ITEM_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_BYO_TEXTFIELD_ITEM_H_ |
| 7 |
| 8 #import <UIKit/UIKit.h> |
| 9 |
| 10 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h" |
| 11 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" |
| 12 |
| 13 // Bring-your-own-text-field: Item that hosts a text field provided by the user |
| 14 // of this class. |
| 15 // Useful for adding a text field to a collection view, where the view may |
| 16 // be scrolled out of view and back in. By using this object, even if the |
| 17 // collection view cell containing the text field is cleared and reused, the |
| 18 // user-entered content remains unchanged by using the same text field. |
| 19 // Not recommended for large models, as the text field is not reused. |
| 20 @interface BYOTextFieldItem : CollectionViewItem |
| 21 |
| 22 // The text field that will be installed in the cell during -configureCell:. |
| 23 @property(nonatomic, strong) UITextField* textField; |
| 24 |
| 25 @end |
| 26 |
| 27 // Cell class associated to BYOTextFieldItem. |
| 28 @interface BYOTextFieldCell : MDCCollectionViewCell |
| 29 @end |
| 30 |
| 31 #endif // IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_BYO_TEXTFIELD_ITEM_H_ |
OLD | NEW |