Lets say I have one object, maybe a UIImageView
...
it is .hidden = NO;
the alpha is .alpha = 0.425;
the background color is [UIColor blackColor];
Is there anyway that if I have another UIImageView
I can set all of the properties to match this UIImageView's
properties.
imageView2.properties = imageView1.properties;
Maybe a for-loop
? something like:
//for (properties *property in object1) {
Or do I have to just go through every possibility.
imageView2.alpha = imageView1.alpha;
imageView2.hidden = imageView1.hidden;
imageView2.backgroundColor = imageView1.backgroundColor;
imageView2.center = imageView1.center
//etc.