使用模拟器(iPhone 4s、5、6),我发现在 iOS7 上以下代码工作正常,但在 iOS8 上没有绘制笔画。(w 和 h 在别处定义)。
SKShapeNode* userGuessSpace = [SKShapeNode node];
CGPathRef ref = CGPathCreateWithRect(CGRectMake(0,0,w,h),nil);
userGuessSpace.fillColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.35];
userGuessSpace.strokeColor = [UIColor colorWithRed:255 green:255 blue:255 alpha:1];
[userGuessSpace setPath:ref];
CGPathRelease( ref );
没有在设备上测试过,是这个模拟器还是我必须做其他事情?
IOS 7
iOS8