Hi, I am trying to change the font size of my UITextView using the value from a UISlider. i need some tips or sample code :) thank you .
+1
A:
- Create a
UISlider
. Add your view controller as a target for
UISlider'
s value changed event, i.e.:[slider addTarget:self action:@selector(sliderActionHandler:) forControlEvents:UIControlEventValueChanged];
- Change the font size inside this handler.
Shaggy Frog
2009-12-10 18:33:22