我有一个包含一些条件的方法。第一个条件工作正常,不会引起任何问题。但是,第二个导致应用崩溃。
- (void)didReceiveGaiaGattResponse:(CSRGaiaGattCommand *)command
{
GaiaCommandType cmdType = [command getCommandId];
NSData *requestPayload = [command getPayload];
uint8_t success = 0;
NSLog(@"cmdType: %li", (long)cmdType);
[requestPayload getBytes:&success range:NSMakeRange(0, sizeof(uint8_t))];
if (cmdType == GaiaCommand_GetCurrentBatteryLevel && requestPayload.length > 1)
{
uint16_t value = 0;
[requestPayload getBytes:&value range:NSMakeRange(1, sizeof(uint16_t))];
NSInteger battery = CFSwapInt16BigToHost(value);
[self sendEventWithName:someDEVICE_BATTERY_CHANGED body:@{@"batteryLevel":[NSNumber numberWithInteger:battery]}];
return;
}
else if (cmdType == GaiaCommand_GET_FBC && requestPayload.length > 1)
{
uint16_t value = 0;
[requestPayload getBytes:&value range:NSMakeRange(1, sizeof(uint16_t))];
NSInteger feedbackCancellationMode = CFSwapInt16BigToHost(value);
[self sendEventWithName:FEEDBACK_CANCELLATION_MODE body:@{@"feedbackCancellationMode": [NSNumber numberWithInt:feedbackCancellationMode]}];
return;
}
//do more stuff
}
有条件的
如果(cmdType == GaiaCommand_GetCurrentBatteryLevel && requestPayload.length> 1)
工作正常。
但是,有条件的
否则(cmdType == GaiaCommand_GET_FBC && requestPayload.length> 1)
在xcode中引起以下警告
隐式转换将失去整数精度:'NSInteger'(aka'long') 到“ int”
此外,我还在调试器中看到了错误消息
*由于未捕获的异常'NSRangeException'而终止应用程序,原因:'* -[_ NSInlineData getBytes:range:]:范围{1、2}超出
数据长度2'
答案 0 :(得分:1)
考虑一下这是在告诉你什么:
Terminating app due to uncaught exception 'NSRangeException', reason:
'-[_NSInlineData getBytes:range:]: range {1, 2} exceeds data length 2'
您的数据对象的长度为2个字节。根据位置(在您的代码中),第一个字节位于位置0,为success
值。这样在位置1还有一个字节要处理。但是您的代码尝试从其中复制2个字节-这就是消息中的range {1, 2}
;一个从位置1开始且长度为2的范围。您正在读取数据的末尾。
您必须检查数据是否有足够的数据可以满足您尝试进行的-getBytes:...
调用。您可能还需要更正关于缓冲区中取消模式值应该有多大的假设,因为它显然比您期望的要小。您的代码假定它是uint16_t
(2个字节),但是数据中只剩下一个字节。
答案 1 :(得分:0)
[NSNumber numberWithInt:feedbackCancellationMode]}]
应该是
[NSNumber numberWithInteger: feedbackCancellationMode]}]