Bring the 3D Touch tick sound for Apps from iOS 13 to iOS 12 and lower
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.

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