UIWebView+JXSearchWebView.h 370 B

1234567891011121314151617181920
  1. //
  2. // UIWebView+JXSearchWebView.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2019/3/13.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface UIWebView (JXSearchWebView)
  11. - (NSInteger)highlightAllOccurencesOfString:(NSString*)str index:(NSInteger)index;
  12. - (void)removeAllHighlights;
  13. @end
  14. NS_ASSUME_NONNULL_END