2016-02-04 71 views

回答

3

UITextField有一個屬性borderStyle,它可以在Interface Builder進行更改:

UITextField has an attribute borderStyle, which can be changed.

.. 。或在代碼:

public var borderStyle: UITextBorderStyle // default is UITextBorderStyleNone. If set to UITextBorderStyleRoundedRect, custom background images are ignored. 
2

你是什麼意思與邊界半徑?它周圍的邊界? 你可以把它們關掉通過點擊在Xcode按鈕:

enter image description here

或者,如果你想這樣做編程方式執行:

myButton.bordered = false 
+1

我的意思是「邊界半徑」是默認的文本字段被四捨五入的角落,我該如何反轉? –

+0

通過選擇「邊框樣式」中的方形邊框 – Eric

+0

OP的問題是關於文本字段而不是按鈕 –

4

可以使用故事板設置的邊框樣式。

enter image description here

,你也可以設置邊框樣式programitically

[txtUserName setBorderStyle:UITextBorderStyleNone];