プログラムで表示する自動レイアウト制約の追加をテストしています。しかし、それは私の見解を隠しています。私はコードを書いています...
UIView *testView = [[UIView alloc] initWithFrame:CGRectMake(50.0, 200.0, 600.0, 200.0)];
[testView setBackgroundColor:[UIColor grayColor]];
[self.view addSubview:testView];
[testView setTranslatesAutoresizingMaskIntoConstraints:NO];
NSDictionary *views = NSDictionaryOfVariableBindings(testView);
[self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-50-[testView(>=600)]-50-|" options:0 metrics:nil views:views]];
なぜこれが私の見解を隠しているのですか?私を助けてください。ありがとう。