0
其中有幾個UITextField,所有UITexfields都有相同的選項。UITextField - 白色矩形而不是鍵盤
self.userPasswordTextField.leftView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 5, 20)];
self.userPasswordTextField.leftViewMode = UITextFieldViewModeAlways;
self.userPasswordTextField.layer.borderColor = [borderColor CGColor];
self.userPasswordTextField.layer.borderWidth = 1.0f;
當我在一個的UITextField點擊我看到白色的矩形,而不是鍵盤(模擬器上)。這裏是屏幕:
你有沒有遇到類似的事情?我嘗試了清晰的模擬器和產品,但沒有成功。
我的第二個問題是:爲什麼模擬器仍然顯示後退按鈕的文本,如「後退」,當我在導航條中設置 - 後退按鈕不同的文本(在某些視圖中,它的工作原理是正確的,清潔模擬器/產品)。