I am experimenting with Chipmunk on iPhone and I came to something I can't solve by myself


As you can see in my attached image, I am trying to rotate body/shape based on finger input. As finger moves up or down the arrow area, body on the right rotates right or left. Rotation angle is calculated based on distance finger moved between two steps. I am doing that by manually changing the shape->a property, which nicely rotates the body, but I have problems having other objects to correspond to such rotations properly (in this case, the ball). As you can see, the ball with gravity has problems to respond to shape rotations in time, so it always "fall" into rotating shapes until rotations stop.
I've tried with bodies with INFINITIVE mass/impulse and static shapes, also tried with active bodies/shapes pinned by joint in the center but I always get same results. Tried with small angular steps like shape->a += 0.01f but ball just keeps falling into rotating shapes. With smaller angles falling is lesser than with larger angles of course, but for rotation to be smooth and appropriate for finger movement, angle must be changed proportionally.
I know the problem is that my rotating objects change their position/velocity too much for ball to pick it up in time, but there have to be some solution I can't figure out.
I've also tried with shape->w property, which gives better results because I suppose it's behavior is more predictive to Chipmunk than raw angle change, but I can't get proper rotation results based on finger movement with that option...
All in all, what I try here to accomplish is for example this:
If finger moved up 40 pixels between time step, I want to rotate my object for example 1.5 radians and ball to respond properly to that.
Thank you in advance and I hope I was clear in my explanations.
Regards