YMCaptchaTextField.m 269 B

12345678910111213141516171819
  1. //
  2. // YMCaptchaTextField.m
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2023/5/5.
  6. //
  7. #import "YMCaptchaTextField.h"
  8. @implementation YMCaptchaTextField
  9. /**
  10. * /禁止可被粘贴复制
  11. */
  12. - (BOOL)canPerformAction:(SEL)action withSender:(id)sender
  13. {
  14. return NO;
  15. }
  16. @end