Remove annoying airdrop and contacts from share menu.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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