我正在使用FirstViewController
将View从SecondViewContoller
导航到Push
。
在我的SecondViewContoller
中,我有一个UITextField
,并且我已使用此代码设置UITextField
的填充。
UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 5, 20)];
textfield.leftView = paddingView;
textfield.leftViewMode = UITextFieldViewModeAlways;
现在,当我导航时,我的第一个视图停留在
SecondViewContoller
上。我看不到SecondViewContoller
的任何内容或执行任何操作。 最佳答案
您还可以使用以下方式设置Padding
:
txtPassword!.layer.sublayerTransform = CATransform3DMakeTranslation(10, 0, 0);