The UISwitch currently says ON and OFF. Can I change the text YES and NO?
Would it be hard? Or do i just rephrase the question i ask the user?
The UISwitch currently says ON and OFF. Can I change the text YES and NO?
Would it be hard? Or do i just rephrase the question i ask the user?
To change the text of an UISwitch e.g. to "Foo/Bar", do the following:
((UILabel *)[[[[[[_agreeAgb subviews] lastObject] subviews] objectAtIndex:2] subviews] objectAtIndex:0]).text = @"Foo";
((UILabel *)[[[[[[_agreeAgb subviews] lastObject] subviews] objectAtIndex:2] subviews] objectAtIndex:1]).text = @"Bar";