我在将 CGPoint 转换为字符串时遇到问题。我尝试了各种方法,但这似乎是最有前途的,但它仍然行不通。有什么建议么?
这是我的代码:
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [[event allTouches] anyObject];
coord = [touch locationInView:touch.view];
viewcoord.text = [NSString stringWithFormat:@"coordinates %@", coord.x, coord.y];
我得到输出,但它只是说“坐标(空)”,我不明白为什么......
谢谢