I've created a custom view that resizes CALayers in when a pan gesture is triggered. When the control is added to a normal UIVIew, the animation behaves exactly as expected.
When the view is added to a UITableViewCell via addSubViewthe animation is jumpy. I placed some NSLog statements in the gesture handler, and it's behaving exactly as expected.
Is there anything about UITableView or UITableViewCell that would cause this unexpected behavior I am experiencing? Is it even correct to add custom view by using addSubView?
EDIT
I have a little more information on the problem. The issue only seems to be appearing on certain environments.
*iPhone 3GS, iOS 4.2.1 - YES
iPod Touch (Retnia), 5.1 - NO
iPod Simulator 4.2 - NO
iPod Simulator 5.1 - NO
I've also put into place the suggestions from Lorean and DavidH, which didn't solve the issue.
*When I build from XCode, there is a message next to the 3gs device that says "Overriding base SDK to 4.3"
Could this be a potential problem?