From 47bae6227ae0ad876648aa42bfe3c944b52862b7 Mon Sep 17 00:00:00 2001 From: kai60 Date: Wed, 19 May 2021 19:15:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=91=87=E5=A4=B4=E6=91=84?= =?UTF-8?q?=E5=83=8F=E5=A4=B4=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Ifish.xcodeproj/project.pbxproj | 4 ++-- .../ConnectAauariumVC/ConAquarMethodVC.m | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/Ifish.xcodeproj/project.pbxproj b/Ifish.xcodeproj/project.pbxproj index 701561f..11b7fa4 100644 --- a/Ifish.xcodeproj/project.pbxproj +++ b/Ifish.xcodeproj/project.pbxproj @@ -15805,7 +15805,7 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 3; DEVELOPMENT_TEAM = WFX8GD5HFX; ENABLE_BITCODE = NO; ENABLE_TESTABILITY = YES; @@ -15923,7 +15923,7 @@ CODE_SIGN_IDENTITY = "iPhone Distribution"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 3; DEVELOPMENT_TEAM = WFX8GD5HFX; ENABLE_BITCODE = NO; ENABLE_TESTABILITY = YES; diff --git a/Ifish/controllers/ConnectAauariumVC/ConAquarMethodVC.m b/Ifish/controllers/ConnectAauariumVC/ConAquarMethodVC.m index d7dbe32..ee5854f 100644 --- a/Ifish/controllers/ConnectAauariumVC/ConAquarMethodVC.m +++ b/Ifish/controllers/ConnectAauariumVC/ConAquarMethodVC.m @@ -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")];