添加摇头摄像头描述

This commit is contained in:
kai60
2021-05-19 19:15:29 +08:00
parent 7460e2d7f9
commit 47bae6227a
2 changed files with 17 additions and 2 deletions
@@ -62,6 +62,21 @@ Strong UILabel *subTitleLabel;
make.left.mas_equalTo(iconImage.mas_right).offset(kSizeFrom750(30));
make.centerY.mas_equalTo(iconImage);
}];
if (i==1&&self.deviceType==DEVICECAMERA)
{
UILabel *detailTitleL = InitObject(UILabel);
detailTitleL.text = @"(摇头机点此连接接方式)";
detailTitleL.textColor = RGB(130, 130, 130);
detailTitleL.font = FontSize(12);
[contentView addSubview:detailTitleL];
[detailTitleL mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.mas_equalTo(iconImage.mas_right).offset(kSizeFrom750(30));
make.top.mas_equalTo(titleL.mas_bottom).offset(-5);
make.width.mas_equalTo(titleL.mas_width);
make.height.mas_equalTo(30);
}];
}
UIImageView *rightArrow = InitObject(UIImageView);
[rightArrow setImage:IMAGEBYENAME(@"right_arrow")];