tetek / SuggestiveTextField

UITextField subclass with suggestions in popover.

Home Page:http://tetek.wordpress.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SuggestiveTextField for iPad

  • It's a UITextfield subclass that presents suggestions based on user input.
  • Suggestions are being displayes in a UIPopoverController.
NSArray *suggestions = @[@"Warsaw",@"Paris",@"Zurich"];
//Initialize with frame or from xib, doesn't matter.
SuggestiveTextField *textField = [SuggestiveTextField alloc] initWithFrame:CGRectMake(0,0,100,30)];
//Remember to set suggestions.
[textField setSuggestions:suggestions];

//Optional
textField.shouldHideOnSelection = NO; //default is YES
[textField setPopoverSize:CGSizeMake(100,100)];

screenshot

Simply copy SuggestiveTextField class to your project and use as in ViewController.h example.

###License The code is licensed under WTFPL

About

UITextField subclass with suggestions in popover.

http://tetek.wordpress.com


Languages

Language:Objective-C 100.0%