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

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

全部回覆(1)
小葫芦

先不說問​​題,你這問題這麼久沒人回答的原因只有一個,看著太累了,麻煩規範下代碼啊。 。 。下面解決問題。你的介面使用IB拖得約束吧,單純的更改frame 是不行的,你要更新約束才行

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!