搜索

首页  >  问答  >  正文

objective-c - 用约束调整label,如何利用约束计算其父控件的动态高度

  1. 描述你的问题
    在storyboard上 拖一个view 设置好约束, 拖一个label ,设置左、上、宽度约束,label 文字变化的时候view 高度也要跟随变化,如何计算label文字变化

  2. 贴上相关代码

-(void)touchesBegan:(NSSet<UITouch > )touches withEvent:(UIEvent *)event
{

// self.oriangeView.bounds = CGRectMake(0.0f, 0.0f, CGRectGetWidth(self.oriangeView.bounds), CGRectGetHeight(self.label.bounds));

[self.oriangeView setNeedsLayout];
[self.oriangeView layoutIfNeeded];
// 得到cell的contentView需要的真实高度
CGFloat height = [self.oriangeView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height;

// 要为cell的分割线加上额外的1pt高度。因为分隔线是被加在cell底边和contentView底边之间的。
height += 1.0f;
NSLog(@"%f",height);

}

  1. 贴上报错信息

  2. 贴上相关截图

  3. 已经尝试过哪些方法仍然没解决(附上相关链接)

ringa_leeringa_lee2789 天前662

全部回复(1)我来回复

  • 大家讲道理

    大家讲道理2017-05-02 09:20:30

    @interface ViewController ()
    @property (弱,非原子) IBOutlet UILabel *label;
    @property (弱,非原子) IBOutlet UIView *oriangeView;
    @property (弱,非原子) IBOutlet NSLayoutConstraint *upConstraint;
    @property (弱) ,非原子)IBOutlet NSLayoutConstraint *smallViewConstraint;

    @结束

    @实现ViewController

    • (void)viewDidLoad {

      雷雷

      //[self.oriangeViewlayoutIfNeeded];

    // [self.oriangeView updateConstraints];

    }

    pragma mark---根据字符串和字体求字符串高度

    -(CGSize)stringSizeWithFont:(UIFont )字体字符串:(NSString )字符串宽度:(CGFloat)宽度
    {

    雷雷

    }
    -(void)touchesBegan:(NSSet> )touches withEvent:(UIEvent *)event
    {

    雷雷

    }

    回复
    0
  • 取消回复