Skip to content

Instantly share code, notes, and snippets.

@kgaidis
kgaidis / UIWebView+CustomAccessory.h
Last active June 23, 2019 18:31
UIWebView does not allow to customize the `inputAccessoryView` without using magic. Just simply change the `customInputAccessoryView` property to switch to another view. Inspiration from: https://gist.github.com/bjhomer/2048571
#import <UIKit/UIKit.h>
@interface UIWebView (CustomInputAccessoryView)
@property (strong, nonatomic) UIView *customInputAccessoryView;
@end