The source code for AudioMessageBeGone, duh.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
315B

  1. %hook CKAudioRecorder
  2. -(void)setCancelled:(BOOL)arg1 {
  3. %orig(YES);
  4. }
  5. %end
  6. %hook CKRecordActionMenuItem
  7. -(void)setSelected:(BOOL)arg1 animated:(BOOL)arg2 {
  8. %orig(NO,NO);
  9. }
  10. %end
  11. %hook CKMessageEntryAudioHintView
  12. -(void)setHidden:(BOOL)arg1 animated:(BOOL)arg2 completion:(id)arg3 {
  13. %orig(YES,NO,NULL);
  14. }
  15. %end