[iOS] 第十課 更進一步的使用者界面4

增加一個橫bar,可以左右移動。



首先增加一個變數:

UILabel *sLabel;

然後增加一個property和方法:

@property (nonatomic, retain) IBOutlet UILabel *sLabel;

-(IBAction)sliding:(id)sender;


最後在.m裡面實做你增加的東西。

-(IBAction)sliding:(id)sender;

@synthesize sLabel;


-(IBAction)sliding:(id)sender{
    UISlider *s = (UISlider *) sender;
    int value = (int) s.value;
    NSString *newLabel = [[NSString alloc] initWithFormat:@"%i", value];
    sLabel.text = newLabel;
}


剩下的下一課再做!

留言