这个问题已经出现在很多地方但没有找到确切的解决方案,我尝试在viewWillAppear,viewDidLoad,setNeedsUpdateConstraints中包含苹果提供的代码但是没有任何用处,即使下面更新的beta 6版本也是代码
CGFloat _expandedHeight = 500;
NSLayoutConstraint *_heightConstraint =
[NSLayoutConstraint constraintWithItem: self.view
attribute: NSLayoutAttributeHeight
relatedBy: NSLayoutRelationEqual
toItem: nil
attribute: NSLayoutAttributeNotAnAttribute
multiplier: 0.0
constant: _expandedHeight];
[self.view addConstraint: _heightConstraint];
我应该把上面的代码块放在哪里?
由于信誉不佳,无法附加键盘的当前视图