I need to change only xoffset of my textfield on a particular event . I am writing the following line .
fileNametext.frame.origin.x = 300.0;
但是我收到以下错误。
错误:左值作为赋值的左操作数
有人可以帮帮我吗?提前谢谢。
答案 0 :(得分:3)
尝试:
fileNametext.frame = CGFrameMake(300, fileNametext.frame.origin.y, fileNametext.frame.size.width, fileNametext.frame.size.height);
答案 1 :(得分:0)
鉴于该错误,我会说'x'是访问器方法或只读属性。试试Josh说的话。