我有一个名为 point 的 CGPoint,它被分配了一个触摸:
UITouch *touch = [touches anyObject];
CGPoint point = [touch locationInView:self];
我想将 x 坐标值放入我的控制台日志中:
NSLog(@"x: %s", point.x);
当我使用它时,日志输出是:
x:(空)
当使用调试器和变量 watch 调用它时,我已经验证了该点不为空。
任何帮助表示赞赏,
谢谢 // :)