Skip to content

Instantly share code, notes, and snippets.

@masakid
Created March 28, 2015 16:39
Show Gist options
  • Select an option

  • Save masakid/fbd54d4ea230d2520912 to your computer and use it in GitHub Desktop.

Select an option

Save masakid/fbd54d4ea230d2520912 to your computer and use it in GitHub Desktop.
import UIKit
class CommonProcess {
//他のタブから遷移したときにデータを移すメソッド
class func settingOtherTabData(label:UILabel, slider:UISlider){
let appDelegate = UIApplication.sharedApplication().delegate as AppDelegate
if let value = appDelegate.commonSliderValue {
label.text = "\(appDelegate.commonSliderValue!)"
slider.value = appDelegate.commonSliderValue!
}
}
//スライダーを動かした時のメソッド
class func commonMoveSlider(label:UILabel, slider:UISlider){
let sliderValue = slider.value
label.text = "\(sliderValue)"
let appDelegate = UIApplication.sharedApplication().delegate as AppDelegate
appDelegate.commonSliderValue = sliderValue
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment