更改SCNText上的字符串值不会产生任何更改

时间:2016-03-01 21:29:44

标签: ios scenekit scnnode scntext

我正在阅读陀螺仪并将SCNText几何体的字符串更改为陀螺仪的偏航值。这种变化发生在陀螺仪处理器内部,每1/30秒调用一次。 SCNText几何体是使用Interface Builder创建的。

我正在使用此代码检索对文本的引用:

SCNNode *textNode = [scene.rootNode childNodeWithName:@"yawText" recursively:YES];
self.text = [textNode geometry]; 
//self.txt is declared as @property (strong, nonatomic) SCNText *text;

稍后在陀螺仪手柄上我这样做:

CGFloat yaw = convertToDegrees(attitude.yaw);
[weakSelfText setString:[NSString stringWithFormat:@"%.1f", yaw]];
NSLog(@"yaw = %1f", yaw);

// I had to declare weakSelfText outside the gyro handler
// because Xcode was complaining
// weakSelfText is declared like this
// __weak typeof(self.text) weakSelfText = self.text;

NSLog正确打印值,但SCNText没有变化。

是的,我试图更改主线程上的文本。没有变化。

1 个答案:

答案 0 :(得分:5)

在SCNText几何体上设置string就足够了。

textNode.geometry.string = "0.5"

如果您没有看到任何变化,那么weakSelfText并不能指向您认为它的位置。确保你没有在某个地方删除引用:

NSAssert(weakSelfText == textNode.geometry, @"pointers not the same")