Use search bar to show only folder objects that start with given filter
[pithos-ios] / Classes / TextViewCell.h
1 //
2 //  TextViewCell.h
3 //  OpenStack
4 //
5 //  Created by Mike Mayo on 10/11/10.
6 //  The OpenStack project is provided under the Apache 2.0 license.
7 //
8
9 @interface TextViewCell : UITableViewCell {
10     UITextView *textView;
11 }
12
13 @property (nonatomic, retain) UITextView *textView;
14
15 @end