ios - 当slider位置移动之后,拖动slider的手柄,slider会回到初始的位置?
ringa_lee
ringa_lee 2017-04-17 17:31:10
0
1
367

iOS,使用ib在界面上做了一个label和一个slider,然后代码写了一个button,slider的值显示在label上,button让slider向下移动。当slider移动之后,拖动slider的手柄,slider会回到初始的位置?why?

#import "ViewController.h"

@interface ViewController ()
//@property (nonatomic, retain) UISlider *slider;
@property (nonatomic, retain) UIButton *button;

@property (weak, nonatomic) IBOutlet UILabel *label; 
@property (weak, nonatomic) IBOutlet UISlider *slider;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    //设置一个button来移动slider
    _button = [[UIButton alloc] initWithFrame:CGRectMake(20, 500, 40, 40)];
    _button.backgroundColor = [UIColor blackColor];
    
    [self.view addSubview:_button];
    
    [_button addTarget:self action:@selector(checkButton) forControlEvents:UIControlEventTouchUpInside];
}

-(void)checkButton
{
    CGRect rect = _slider.frame;
    
    rect.origin.y += 20;
    
    _slider.frame = rect;
}

- (IBAction)changValue:(id)sender {
    _label.text = \[NSString stringWithFormat:@"%f",_slider.value\];
}
- (void)didReceiveMemoryWarning {
    \[super didReceiveMemoryWarning\];
    // Dispose of any resources that can be recreated.
}

@end
ringa_lee
ringa_lee

ringa_lee

reply all(1)
小葫芦

Let’s not talk about the question first. There is only one reason why no one has answered your question for so long. It looks too tiring. Please standardize the code. . . Solve the problem below. Use IB to drag the constraints on your interface. Simply changing the frame will not work. You have to update the constraints

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!