我在代码中设置 NSMutableURLRequest 的超时值,如下所示:
request.timeoutInterval = 30.0;
我希望能够在调试时在运行时更改此值,因此在控制台中尝试了此操作(适用于 lldb):
expr request.timeoutInterval = 0.1
但这给出了:
error: property 'timeoutInterval' not found on object of type 'NSMutableURLRequest *'
error: 1 errors parsing expression
所以我尝试了这个:
expr [请求 setTimeoutInterval: 30.0]
但这产生了:
错误:没有已知方法'-setTimeoutInterval:';将消息发送到方法的返回类型 error: 1 errors parsing expression
有人知道如何改变它吗?