我有一个 CGPoint 叫做 point,它被分配了一个触点:
UITouch *touch = [touches anyObject];
CGPoint point = [touch locationInView:self];
我想把 x 坐标值输入到我的控制台日志中:
NSLog(@"x: %s", point.x);
当我使用 this 时,它的日志输出为:
X: (无)
我已经验证了当使用调试器和变量 watch 调用这个命令时,这个点不为空。
感谢你的帮助,
谢谢//:)