将填充设置为文本字段冻结我的屏幕

时间:2016-12-23 12:49:54

标签: ios objective-c uitextfield

我正在使用FirstViewControllerSecondViewContoller导航到Push。 在我的SecondViewContoller我有UITextField,我使用此代码设置UITextField的填充。

   UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 5, 20)];
   textfield.leftView = paddingView;
   textfield.leftViewMode = UITextFieldViewModeAlways;

现在,当我导航时,我的第一个视图卡在SecondViewContoller上。我无法看到SecondViewContoller中的任何内容或执行任何操作。

1 个答案:

答案 0 :(得分:1)

您也可以使用

设置Padding
txtPassword!.layer.sublayerTransform = CATransform3DMakeTranslation(10, 0, 0);