• Stars
    star
    115
  • Rank 305,828 (Top 7 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created about 11 years ago
  • Updated almost 11 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Horizontal word picker, ideal as keyboard input accessory view.

ZRYWordPicker is a really simple horizontal word picker specially crafted for the top of the keyboard of any iOS 7 app. If your app has predefined words that your user can pick, instead of type, then this will likely save him some seconds for each word.

As seen in

Sample screenshots

Β 

Usage sample

-  (void)initializeWordPicker {

    ZRYWordPicker *wordPicker =
    [[ZRYWordPicker alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
    
    wordPicker.dataSource = self;
    wordPicker.delegate = self;
    
    self.textField.inputAccessoryView = wordPicker;
}

- (NSUInteger)numberOfWordsInWordPicker:(ZRYWordPicker *)wordPicker {
    
    return self.words.count;
}

- (NSString *)wordPicker:(ZRYWordPicker *)wordPicker wordAtIndex:(NSUInteger)index {
    
    return self.words[index];
}

- (void)wordPicker:(ZRYWordPicker *)wordPicker didSelectWordAtIndex:(NSUInteger)index {

    ...
}