在当前的指南针应用中,您可以在指南针和一个关卡之间滑动。我将如何在Swift中创建相同的效果?好吧,我正在尝试创建一个主要学习的应用程序。我想创建一个记事本应用程序,如果您向右滑动,则会显示字体选择,如果向左滑动,则会显示以前的笔记列表。到目前为止,这是我的代码
var noteArray: Dictionary<String,String> = [:]
var selectTextView = UIButton()
var selectTextField = UITextField()
var selectString: String = ""
override func viewDidLoad() {
super.viewDidLoad()
self.view.backgroundColor = UIColor.whiteColor()
var widthField = self.view.bounds.size.width - 10
var heightField = self.view.bounds.size.height - 69 - 221 - 38
println(heightField)
println(widthField)
var textFieldString: String! = ""
//Set up resizable Button Image
let buttonImage: UIImage = UIImage(named:"whiteButtonLong")
let buttonImageHighlight: UIImage = UIImage(named:"whiteButtonHighlightLong")
//Set up text field
self.textView = UITextView(frame: CGRectMake(5, 64, widthField, heightField))
self.textView.backgroundColor = UIColor.redColor()
self.view.addSubview(self.textView)
textView.becomeFirstResponder()
//Set up the New button
var newButtonString: String! = "New Note"
var heightButton = 568 - heightField - 1000
var widthButton = (widthField/2) - 2
let floatInt: CInt = 3
let newButton = UIButton(frame: CGRect(x: 5, y: 5, width: widthButton, height: 50))
UIButton.buttonWithType(UIButtonType.System)
newButton.setTitle(newButtonString,forState: UIControlState.Normal)
newButton.setTitleColor(UIColor.blackColor(), forState: UIControlState.Normal)
newButton.setBackgroundImage(buttonImage, forState: UIControlState.Normal)
newButton.setBackgroundImage(buttonImageHighlight, forState: UIControlState.Highlighted)
/*newButton.backgroundColor = UIColor.cyanColor()
newButton.layer.borderColor = UIColor.blackColor().CGColor
let widthForBorder: CGFloat = 0.5
newButton.layer.borderWidth = widthForBorder*/
newButton.backgroundRectForBounds(CGRectMake(5, 5, widthButton, heightButton))
newButton.addTarget(self, action: "buttonAction:", forControlEvents: UIControlEvents.TouchUpInside)
newButton.layer.cornerRadius = 10
newButton.clipsToBounds = true
self.view.addSubview(newButton)
//Set up select note
let widthSelectField = widthButton - 10
selectTextView = UIButton(frame: (CGRectMake(162, 5, widthButton, 50))) as UIButton
selectTextView.setBackgroundImage(buttonImage, forState: UIControlState.Normal)
selectTextView.setBackgroundImage(buttonImageHighlight, forState: UIControlState.Highlighted)
self.view.addSubview(selectTextView)
selectTextField = UITextField(frame: CGRectMake(170, 22.5, widthSelectField, 15))
selectTextField.keyboardType = UIKeyboardType.NumberPad
//selectTextField.backgroundColor = UIColor.blueColor()
selectTextView.addTarget(self, action: "textViewAction:", forControlEvents: UIControlEvents.TouchUpInside)
self.view.addSubview(selectTextField)
selectTextField.text = selectString
selectTextField.canBecomeFirstResponder()
selectTextField.textAlignment = NSTextAlignment.Center
selectTextField.placeholder = "Select Note"
//Set up return button
var returnButton: UIButton = UIButton(frame: CGRectMake(120, 315, 80, 30))
returnButton.backgroundColor = UIColor.grayColor()
returnButton.layer.cornerRadius = 10
returnButton.layer.masksToBounds = true
returnButton.layer.borderWidth = 2
returnButton.layer.borderColor = UIColor.blackColor().CGColor
returnButton.setTitleColor(UIColor.blackColor(), forState: UIControlState.Normal)
returnButton.setTitle("Return", forState: UIControlState.Normal)
returnButton.addTarget(self, action: "returnButtonAction:", forControlEvents: UIControlEvents.TouchUpInside)
self.view.addSubview(returnButton)
由于这是在viewDidLoad()之外
func buttonAction(sender:UIButton!) {
var noteArrayPlusOne = String(noteArray.count + 1)
noteArray.updateValue(textView.text, forKey: noteArrayPlusOne)
println(noteArray)
textView.text = ""
}
func textViewAction(sender: UIButton!) {
selectTextField.becomeFirstResponder()
}
func returnButtonAction(sender: UIButton!){
//println("button was pressed")
selectString = selectTextField.text
println(selectString)
textView.text = noteArray[selectString]
selectTextField.text = ""
}
最佳答案
您要使用UIScrollView。这使您能够平移视图。
let scrollView: UIScrollView!
override func viewDidLoad() {
super.viewDidLoad()
self.scrollView = UIScrollView(frame: self.view.bounds)
self.view.addSubview(self.scrollView)
}
要设置大小,请设置UIScrollView的contentSize属性。对于指南针/关卡应用程序:
self.scrollView.contentSize = CGSize(width: 2 * theWidthOftheScreen, height: theHeightOfTheScreen)
要使滚动视图“快照”到最左边或最右边的滚动位置,请启用分页:
self.scrollView.pagingEnabled = true
还有许多其他属性,例如更改滚动条颜色或隐藏它们。
关于ios - 如何在Swift中创建像指南针一样的“滑动 View ”?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24224214/