When positioning my newSwitches, I have been doing something similar to this:
mySwitch.x = display.contentWidth - (mySwitch.width \* 0.5) - 5
This should place its right hand edge 5 pixels in from the right edge of the screen.
When using the iOS 7 theme this seems to be fine, but on Android and on iOS6 there seems to be lots of empty space within the image, so the switch ends up being much further to the left.
Is there a reason for this, or will I have to guess the width of these objects, and hope that it doesn’t change in future?