UITextField設置background圖片後,圖片不能填充滿?
圖片是美化過後的,自己resizable拉伸了一下,但就是和TF邊框有空隙。所以輸入
時內容在圖片框外,是不是也有修改內邊距的方法呢,求解惑!謝謝!!!
UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 5, 20)];
textField.leftView = paddingView;
textField.leftViewMode = UITextFieldViewModeAlways;
弄個空的leftview,文字就在leftview後面顯示 轉載僅供參考,版權屬於原作者。_