如何在uitextfield中获得10分后的价值?

时间:2016-03-02 17:50:02

标签: ios swift uitextfield

我正在使用swift 2.0。我有一个用户名的uitext字段。现在我也为此放置了占位符。但是当我开始输入时,该值从该文本字段的角落开始。我需要在形成uitext字段的角点之前稍微开始。这是我的形象,这只是我需要改变。

enter image description here

当我从角落开始输入任何值时。我需要在那个角点之后稍微开始(在swift中)。

import UIKit


class CustomTextField: UITextField {

    required init?(coder aDecoder: NSCoder){
        super.init(coder: aDecoder)
    }

    override func textRectForBounds(bounds: CGRect) -> CGRect {
        return CGRectMake(bounds.origin.x + 10, bounds.origin.y + 8, bounds.size.width - 20, bounds.size.height - 16);
    }

    override func editingRectForBounds(bounds: CGRect) -> CGRect {
        return self.textRectForBounds(bounds);
    }
}

class ViewController: UIViewController {


    @IBOutlet weak var FirstFiels: UITextField!


    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.

    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


}

0 个答案:

没有答案