PCSButton.m 401 B

123456789101112131415161718192021222324
  1. //
  2. // PCSButton.m
  3. // sampleSDK
  4. //
  5. // Created by 王昭威 on 2023/1/18.
  6. //
  7. #import "PCSButton.h"
  8. @implementation PCSButton
  9. - (void)sendAction:(UIAction *)action{
  10. [super sendAction:action];
  11. }
  12. /*
  13. // Only override drawRect: if you perform custom drawing.
  14. // An empty implementation adversely affects performance during animation.
  15. - (void)drawRect:(CGRect)rect {
  16. // Drawing code
  17. }
  18. */
  19. @end