// IOS不允许直接修改 对象 的 结构体属性 的成员:例如:self.head.frame.size.width +=10;
// 允许直接 对象 的 结构体 属性 self.head.frame=CGRectMake(10,10,100,100);
所以修改结构体属性的成员得用下边的迂回方法;
CGRect tempFrame = self.head.frame;
tempFrame.origin.y -= 10;
self.head.frame = tempFrame;