Bring the 3D Touch tick sound for Apps from iOS 13 to iOS 12 and lower
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

35 linhas
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