I am trying to change height of UISegmentedControl
using this code:
CGRect frame= mySegmentedControl.frame;
[mySegmentedControl setFrame:CGRectMake(frame.origin.x, frame.origin.y, frame.size.width, fNewHeight)];
But it does not work. has anyone idea why? It actually works, if I un-check the "Use Autolayout" feature of the segmented control in interface builder, but then the items in the segmented control become not clickable for some reasons...
This is next to the issue, that I still didn't find an easy way to add multiple lines of text to the UISegmentedControl
(any help here would also be appreciated).