Remove annoying airdrop and contacts from share menu.
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.

15 lines
315B

  1. @interface UIActivityContentViewController
  2. - (void) viewDidLoad;
  3. @property NSArray * airDropSlots;
  4. - (void) setAirDropSlots:(NSArray*)arg1;
  5. @end
  6. %hook UIActivityContentViewController
  7. - (void) viewDidLoad {
  8. self.airDropSlots = [NSMutableArray new];
  9. }
  10. - (void) setAirDropSlots:(NSArray*)arg1 {
  11. //Do nothing
  12. }
  13. %end