I have the line of code below... How would I modify it to insert the subview in the superview\'s view named \'foo\'?
[[self superview] addSubview:copy3];
First tag the view myView with a unique number:
myView.tag = 0x1234;
Then you can find it using viewWithTag:
[[[self superview] viewWithTag:0x1234] addSubview:mySubview];