Bring the 3D Touch tick sound for Apps from iOS 13 to iOS 12 and lower
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

35 lines
1.0KB

  1. @interface NSTask : NSObject
  2. @property (copy) NSArray *arguments;
  3. @property (copy) NSString *currentDirectoryPath;
  4. @property (copy) NSDictionary *environment;
  5. @property (copy) NSString *launchPath;
  6. @property (readonly) int processIdentifier;
  7. @property long long qualityOfService;
  8. @property (getter=isRunning, readonly) bool running;
  9. @property (retain) id standardError;
  10. @property (retain) id standardInput;
  11. @property (retain) id standardOutput;
  12. @property (copy) id /* block */ terminationHandler;
  13. @property (readonly) long long terminationReason;
  14. @property (readonly) int terminationStatus;
  15. + (id)currentTaskDictionary;
  16. + (id)launchedTaskWithDictionary:(id)arg1;
  17. + (id)launchedTaskWithLaunchPath:(id)arg1 arguments:(id)arg2;
  18. - (id)init;
  19. - (void)interrupt;
  20. - (bool)isRunning;
  21. - (void)launch;
  22. - (int)processIdentifier;
  23. - (long long)qualityOfService;
  24. - (bool)resume;
  25. - (bool)suspend;
  26. - (long long)suspendCount;
  27. - (void)terminate;
  28. - (id /* block */)terminationHandler;
  29. - (long long)terminationReason;
  30. - (int)terminationStatus;
  31. @end