I have a CGPoint called point that is being assigned a touch:
UITouch *touch = [touches anyObject]; CGPoint point = [touch locationInView:self];
point.x is a floating point number so you should code like this:
point.x
NSLog(@"%@",[NSString StringWithFormat:@"%f",point.x]);