开发者

Problems with converting a CGPoint to a string

I have been having problems with converting a CGPoint to a string. I have tried various methods, but this seems like the most promising but it still won't work. Any suggestions?

Here is my code:

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = [[event allTouches] anyObject];
    coord = [touch locationInView:touch.view];  
    viewcoord.text = [NSString stringWithF开发者_StackOverflow中文版ormat:@"coordinates %@", coord.x, coord.y];

I get output but it just says "coordinates (null)" and I don't understand why...

Thanks


viewcoord.text = [NSString stringWithFormat:@"coordinates %@", NSStringFromCGPoint(coord)];


Your format string uses a %@ which only applies to objective-C objects. You look like you're trying to print not one but two values (the x and the y), both of which are floats. Try this:

viewcoord.text = [NSString stringWithFormat:@"coordinates %f, %f", coord.x, coord.y];
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜