このアクションはスライド時に呼び出されます:
-(IBAction) sliding:(id)sender{
UISlider *temp = (UISlider *) sender;
int value = (int)temp.value;
val.text= [[NSString alloc]initWithFormat:@"%i",value ]; // val is the name oflabel
}
しかし、私がこれを行うとき:
-(IBAction) sliding:(id)sender{
int value = (int)sender->value;// ERROR(no member named value) WHY ?
val.text= [[NSString alloc]initWithFormat:@"%i",value ]; // val is the name of label
}
UISlider クラスのインスタンスを作成せずにスライダーの値を取得するにはどうすればよいですか