无法使用任何版本xcode beta 3,beta 4,beta 5,beta 6设置自定义键盘的高度

时间:2014-08-25 13:16:21

标签: ios xcode

这个问题已经出现在很多地方但没有找到确切的解决方案,我尝试在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];

我应该把上面的代码块放在哪里?

由于信誉不佳,

无法附加键盘的当前视图

0 个答案:

没有答案