i have a bunch of objects (image views, buttons, sliders, etc.) in an array, and would like to shift them all at once using fast enumeration and CGAffineTransform... however, i can't seem to get it working.
Error: request for member 'transform' in something not a structure or union
any ideas?
Code:
for (id objects in theArray)
{
CGAffineTransform t = CGAffineTransformMakeTranslation(44, 0);
objects.transform = t;
}
Error: request for member 'transform' in something not a structure or union
any ideas?