123456789101112131415161718 |
- //
- // ForbidMenuTextField.m
- // VclustersGemini
- //
- // Created by 余衡武 on 2022/2/11.
- // Copyright © 2022 APPLE. All rights reserved.
- //
- #import "ForbidMenuTextField.h"
- @implementation ForbidMenuTextField
- - (BOOL)canPerformAction:(SEL)action withSender:(id)sender{
- return NO;
- }
- @end
|