0
Tüm aygıtlarım için konumu doğru şekilde ayarlamak için bu kodu kullanıyorum. Sorun şu ki, 4'teki kaydırıcının konumunu ayarlarsam, iphone 6+ konumu değişir. Aynı diğer cihazlar için de geçerli. Kaydırıcıları mükemmel şekilde konumlandırmak için her cihazı nasıl alabilirim? Spritekit btw'de.UISlider'ın tüm aygıtlar için ayar noktasını ayarlamakta zorlanıyor musunuz?
//iphone4s
if UIDevice.currentDevice().userInterfaceIdiom == .Phone && ScreenSize.maxLength < 568.0 {
middleSlider = UISlider(frame: CGRectMake(180, 50, 150, 20))
middleSlider.tintColor = UIColor.whiteColor()
middleSlider.setThumbImage(UIImage(named: "thumb2"), forState: UIControlState.Normal)
self.view?.addSubview(middleSlider)
bottomAudioControlBg.position = CGPointMake(self.size.width/2, self.size.height/7)
}
//iphone5
if UIDevice.currentDevice().userInterfaceIdiom == .Phone && ScreenSize.maxLength == 568.0 {
}
//iphone6
if UIDevice.currentDevice().userInterfaceIdiom == .Phone && ScreenSize.maxLength == 667.0 {
}
//iphone6+
if UIDevice.currentDevice().userInterfaceIdiom == .Phone && ScreenSize.maxLength == 736.0 {
middleSlider = UISlider(frame: CGRectMake(255, 50, 150, 20))
middleSlider.tintColor = UIColor.whiteColor()
middleSlider.setThumbImage(UIImage(named: "thumb2"), forState: UIControlState.Normal)
self.view?.addSubview(middleSlider)
}
//ipad
if UIDevice.currentDevice().userInterfaceIdiom == .Pad && ScreenSize.maxLength == 1024.0 {
}
//ipadpro
if UIDevice.currentDevice().userInterfaceIdiom == .Pad && ScreenSize.maxLength == 1366.0 {
}
tamam. Teşekkür ederim! – coding22
Bu da ipad için bu bir soru olacak mı? – coding22
İpad için denedim ve kaydırıcılar iphone'daki gibi doğru konumda değil. – coding22