ForbidMenuTextField.m 298 B

123456789101112131415161718
  1. //
  2. // ForbidMenuTextField.m
  3. // VclustersGemini
  4. //
  5. // Created by 余衡武 on 2022/2/11.
  6. // Copyright © 2022 APPLE. All rights reserved.
  7. //
  8. #import "ForbidMenuTextField.h"
  9. @implementation ForbidMenuTextField
  10. - (BOOL)canPerformAction:(SEL)action withSender:(id)sender{
  11. return NO;
  12. }
  13. @end