我在下面的代码部分中得到以下“按值传递的struct参数包含未初始化的数据”:
for ( int i = 0; i < 48; i++ )
{
CGPoint posLevel;
LevelButton* pBtn;
if ( i >= 0 && i < 24 )
{
int nXX = (i % 4 + 1);
if ( i < [pBtnArray count] )
{
posLevel = ccp( (spMask.position.x - mySize.width / 2) + mySize.width / 5 * nXX,
mySize.height - mySize.height / 7 * (i / 4 + 1));
pBtn = [pBtnArray objectAtIndex:i];
if ( pBtn != nil )
{
[pBtn move:posLevel];
}
}
}
用xcode添加箭头,如果这些有帮助??
删除注释掉的代码后,这里的代码不多,所以我不明白XCode出现了什么问题。
任何有关删除此错误的帮助都将不胜感激!
答案 0 :(得分:10)
屏幕截图中的代码格式为
CGRect posLevel;
if (mySize.height < 568) {
posLevel = ...;
}
if (mySize.height >= 568) {
posLevel = ...;
}
[pBtn move:posLevel];
似乎静态分析器无法识别第一个
或者在任何情况下执行第二个if-block。
蓝色箭头表示两个if-blocks都不执行的流程,
在这种情况下posLevel
将是未定义的。
您可以使用if-else:
来解决这个问题CGRect posLevel;
if (mySize.height < 568) {
posLevel = ...;
} else {
posLevel = ...;
}
[pBtn move:posLevel];