我尝试将 lastPointX 的值放入标签文本中,但不起作用。在 Interface Builder 中,我创建了两个标签,“x”值的标签和“y”值的标签。请如果有人知道解决方案,请回答问题。
谢谢。
这是代码和错误。
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
UITouch *touch = [touches anyObject];
lastPoint = [touch locationInView:self.view];
CGFloat lastPointX = lastPoint.x;
CGFloat lastPointY = lastPoint.y;
labelx.text == lastPointX; // <----- error: Semantic Issue: Invalid operands to binary expression ('NSString *' and 'CGFloat' (aka 'float'))
}