2016-04-08 10 views
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 { 

} 

cevap

1

Bu kolayca bu çözebilir basit ölçekleme-faktörünü kullanarak, böyle bir sorun :)

için çok koduna yoludur: çalıştığını

let scaleFactor = UIScreen.mainScreen().bounds.width/320 

     let middleSlider = UISlider(frame: CGRectMake(180 * scaleFactor, 50, 150, 20)) 
     middleSlider.tintColor = UIColor.whiteColor() 
     middleSlider.setThumbImage(UIImage(named: "thumb2"), forState: UIControlState.Normal) 
     self.view?.addSubview(middleSlider) 
+0

tamam. Teşekkür ederim! – coding22

+0

Bu da ipad için bu bir soru olacak mı? – coding22

+0

İpad için denedim ve kaydırıcılar iphone'daki gibi doğru konumda değil. – coding22