Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
UISlider フレームの最小幅は 22、最小高さは 34です。 フレームを設定CGRectMake(0,0,1,1)しても正しく変更できません。
CGRectMake(0,0,1,1)
UISlider *slider = [[UISlider alloc] init]; slider.frame = CGRectMake(0,0,1,1)
Apple は UISlider の最小サイズを 34 にしていると思います。42じゃなくて34
コードを試してください:
UISlider *slider = [[UISlider alloc] init]; slider.frame = CGRectMake(0,0,36,36)