要自定义输入位置,或者使用图片,或者定义一个UITextField的子类,然后覆盖下面的方法: // placeholder position - (CGRect)textRectForBounds:(CGRect)bounds { return CGRectInset(bounds, 10, 10);} // text position - (CGRect)editingRectForBounds:(CGRect)bounds { return CGRectInset(bounds, 10, 10);}