/** * Author: Timothy Prepscius * License: BSD + keep my name in the code! */ #import #include "MMTypes.h" @protocol UIAutoCompleteDelegate -(NSArray *) valuesFor:(NSString *)key; -(void) onSelected:(NSString *)text; @end @interface UIAutoCompleteTableView : UITableView @property (MM_WEAK, nonatomic) id autoCompleteDelegate; - (void) onKeyChange:(NSString *)key; @end