UISlider框架最小宽度为22,最小高度为34
即使我设置了帧CGRectMake(0,0,1,1)
,它也无法正确更改。
UISlider *slider = [[UISlider alloc] init];
slider.frame = CGRectMake(0,0,1,1)
答案 0 :(得分:2)
我认为,Apple将34作为UISlider的最小尺寸。不是42,而是34
尝试代码:
UISlider *slider = [[UISlider alloc] init];
slider.frame = CGRectMake(0,0,36,36)