¿Cuál es la sintaxis objetivo-c para documentar el uso de un método? ¿Esto se hace en el archivo .h o .m?Método 'documentación'
En C# se usa algo como:
/// <summary>
/// Executes an HTTP GET command and retrieves the information.
/// </summary>
/// <param name="url">The URL to perform the GET operation</param>
/// <param name="userName">The username to use with the request</param>
/// <param name="password">The password to use with the request</param>
/// <returns>The response of the request, or null if we got 404 or nothing.</returns>
protected string ExecuteGetCommand(string url, string userName, string password) {
...
}
¿Se hace esto con la directiva #pragma?
Gracias,
Craig Buchanan
'/ **' parece funcionar también – davis