我有以下表視圖控制器(實際上是的UITableViewController的自定義子類):爲什麼我的自動佈局約束不起作用?
我要的是Make:
從正面的標籤上排列有Model:
的,我認爲這是領先的。 (基本上我想的話在同一X位置開始)
我有下面的代碼來實現:
NSLayoutConstraint *constraint = [NSLayoutConstraint
constraintWithItem:self.carMakeLabel
attribute:NSLayoutAttributeLeading
relatedBy:NSLayoutRelationEqual
toItem:self.carModelLabel
attribute:NSLayoutAttributeLeading
multiplier:1.0
constant:0];
[self.view addConstraint:constraint];
但是當我運行它,他們留下來,因爲他們都在下面的截圖。此外,應用程序在一段時間後崩潰。 (按照線程1的說法:EXC_BREAKPOINT
什麼是目標設備的操作系統上,您在代碼中運行的應用程序 – Apurv