12345678910111213141516171819 |
- //
- // YMCaptchaTextField.m
- // MSYOUPAI
- //
- // Created by YoMi on 2023/5/5.
- //
- #import "YMCaptchaTextField.h"
- @implementation YMCaptchaTextField
- /**
- * /禁止可被粘贴复制
- */
- - (BOOL)canPerformAction:(SEL)action withSender:(id)sender
- {
- return NO;
- }
- @end
|