BSKeyboardControls icon indicating copy to clipboard operation
BSKeyboardControls copied to clipboard

Put controls above the keyboard on your iPhone or iPad app.

Results 17 BSKeyboardControls issues
Sort by recently updated
recently updated
newest added

Now localization files exist only in the example project. They aren't copied while 'pod install'. So, this PR fixes that. P.S. Please remember to post the new podspec in Cocoapods...

I am successfully using BSKeyboardControls with a fixed number of defined fields...works great!!! I have another UIViewController containing only a UITableView with a dynamic cell prototype containing a single text...

As you may already have seen, the default iOS 10 keyboard controls have changed from Left / Right arrows to Up / Down. I have made the following easy fix...

Hi simonbs, I am using BSKeyboardControls in my swift project. After i have converted my swift 2.3 to 3 and BSKeyboardControls is stop working. Any idea ? Should i need...

Please can you update the podspec on cocoapods to version 2.3. At the moment we have to define it in our podfile like this... ``` pod 'BSKeyboardControls', :git => 'https://github.com/simonbs/BSKeyboardControls.git'...

Only became active the keyboard when the view is visible

Hi, Why did you used ``` [self setDoneButton:[[UIBarButtonItem alloc] initWithTitle:NSLocalizedStringFromTable(@"Done", @"BSKeyboardControls", @"Done button title.") style:UIBarButtonItemStyleDone target:self action:@selector(doneButtonPressed:)]]; ``` instead of [self setDoneButton:[[UIBarButtonItem alloc] initWithBarButtonSystemItem: **UIBarButtonSystemItemDone** target:self action:@selector(doneButtonPressed:)]];

Now when in the example project, and you're on a text field, you can tap the keyboard's Next button (the button in the lower right of the keyboard, not the...

When test my app for the upcoming iOS7, I noticed that the scrolling to the active text field no longer works. I tried just testing the supplied Example.xcodeproj to ensure...

Is there a way to set custom background color? I tried `self.keyboardControls.backgroundColor = [UIColor blackColor];` but nothing happened