我正在使用FirstViewController
从SecondViewContoller
导航到Push
。
在我的SecondViewContoller
我有UITextField
,我使用此代码设置UITextField
的填充。
UIView *paddingView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 5, 20)];
textfield.leftView = paddingView;
textfield.leftViewMode = UITextFieldViewModeAlways;
现在,当我导航时,我的第一个视图卡在SecondViewContoller
上。我无法看到SecondViewContoller
中的任何内容或执行任何操作。
答案 0 :(得分:1)
您也可以使用
设置Padding
txtPassword!.layer.sublayerTransform = CATransform3DMakeTranslation(10, 0, 0);