I created a sectioned UITableView and added a custom cell that includes a UISwitch. All this is done using the storyboard. However, when running the App (Simulator/device), the UISwitch does not look as expected (c.f. attached screenshot).
Any ideas on why this happened are highly appreciated (XCode 4.5.2, iOS 6.0.1). Note: creating a new UIStoryboard does not solve the problem.


I just got the answer to my question: I created a category on
UIImageViewthat sets custom layer properties (e.g.shadowRadius). Setting a breakpoint on the correspondingUIImageViewmethod, it revealed that theUISwitchcalled it.I did not get to this point earlier, as I only had a single
UIImageViewbefore (and this one was supposed to have custom properties). Thanks for all your comments!