已經嘗試了很多設置的UITextView auotolayout約束。但是當我跑步,我得到空白屏幕。我在UIButton中以相同的方式嘗試,這工作!!!!!我如何設置自動佈局約束的UITextView的
有沒有被設置爲UITextView的分配約束任何財產????
UITextView *text1;
text1=[[UITextView alloc]initWithFrame:CGRectMake(50, 100, 100, 30)];
[text1 setBackgroundColor:[UIColor blueColor]];
[email protected]"asjdgajsdbasbfbsdfbsdbfbsd";
[text1 sizeToFit];
set.translatesAutoresizingMaskIntoConstraints=NO;
[self.view addSubview:text1];
NSLayoutConstraint *constraint;
constraint = [NSLayoutConstraint constraintWithItem:text1 attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeBottom multiplier:1.0f constant:1.f];
[self.view addConstraint:constraint];
非常感謝。 。 。 。 。 –
完全沒有。 。 。 。 – Bimawa