how to turn off auto layout for only one view ( not the whole story board ) xcode
ios, xcode
Solution
From the answer given by MuhammadAamirAli here, its possible. Here is a snapshot code from his answer, which I found useful.
[self.benchmarkButton removeFromSuperview];
[self.benchmarkButton setTranslatesAutoresizingMaskIntoConstraints:YES];
[self.benchmarkButton setFrame:CGRectMake(20, self.benchmarkButton.frame.origin.y+40, 260, 30)];
[self.benchmarksView addSubview:self.benchmarkButton];
Problem
I just want to turn the auto layout feature for one view only in mystoryboard . is that possible and if yes , how do I do that . I'm using xcode 4.6.3