MyAutocompleteItemsSource.h 749 B

123456789101112131415161718
  1. //
  2. // MyAutocompleteItemsSource.h
  3. // testautocomplete
  4. //
  5. // Created by Ray on 14-4-29.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. //#import "TRAutocompleteItemsSource.h"
  10. @interface MyAutocompleteItemsSource : NSObject//<TRAutocompleteItemsSource>
  11. - (id)initWithMinimumCharactersToTrigger:(NSUInteger)minimumCharactersToTrigger source:(NSArray*) predictions;
  12. //- (id)initWithMinimumCharactersToTrigger:(NSUInteger)minimumCharactersToTrigger
  13. - (NSUInteger)minimumCharactersToTrigger;
  14. - (void)itemsFor:(NSString *)query whenReady:(void (^)(NSArray *))suggestionsReady;
  15. -(void) put_predictions:(NSArray*)predictions;
  16. @property (strong,nonatomic) NSArray* predictions;
  17. @end