/** 举例:随内容大小自适应*/ //UILabel UILabel *label = [UILabel new]; label.text = @"这是一段文本"; label.backgroundColor = [UIColor redColor]; [label sizeToFit]; label.center = CGPointMake(self.view.center.x, 40); [self.view a...