我知道对此有一个问题,但我不清楚。我想向 UIAlertView 添加一个 UISlider。在 UIAlertView 中,我还添加了一个 UILabel 来显示 UISlider 的值。到目前为止我所做的是:
UIAlertView *alert= [[UIAlertView alloc]
initWithTitle: @"Set delay"
message: @" "
delegate: nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
UISlider *mySlider=[[UISlider alloc] initWithFrame:CGRectMake(20, 50, 200, 20)];
mySlider.maximumValue=10.00;
mySlider.minimumValue=1.00;
UILabel *myLabel=[[UILabel alloc] initWithFrame:CGRectMake(220, 50, 50, 40)];
int x=.........;//x should get value of mySlider
[myLabel setText:[NSString stringWithFormat:@"%d",x]];
[alert addSubview:myLabel];
[alert addSubview:mySlider];
[alert show];
[alert release];
所以我希望变量x
获得 的值,mySlider
并且myLabel
将显示 的值x
。我被困在这一点上。任何建议都非常感谢。