Guys... How can i change the .alpha value of UIslider from another view...
i have also tried using appdeligate like this :-
MyAppDelegate *appDelegate = (MyAppDelegate *)[[UIApplication sharedApplication] delegate];
appDelegate.viewController.sliderIncreaseWidth.alpha=1.0;
but the value is not changing... I hav also tried to call a function in ViewController class but still no effect.. The address of Uislider is showing 0x0..
I hav also used @property & @synthesize... but not working...
tks in advance...