The source code for AudioMessageBeGone, duh.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
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