diff --git a/Ifish.xcodeproj/project.pbxproj b/Ifish.xcodeproj/project.pbxproj index 037d2af..701561f 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 = 1; + CURRENT_PROJECT_VERSION = 2; 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 = 1; + CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_TEAM = WFX8GD5HFX; ENABLE_BITCODE = NO; ENABLE_TESTABILITY = YES; diff --git a/Ifish/controllers/IfishYooseeFile/IfishYooseeControlller/IfishcameraBottomHView/CameraBottomCollectionViewCell.h b/Ifish/controllers/IfishYooseeFile/IfishYooseeControlller/IfishcameraBottomHView/CameraBottomCollectionViewCell.h index 0109057..bf48830 100644 --- a/Ifish/controllers/IfishYooseeFile/IfishYooseeControlller/IfishcameraBottomHView/CameraBottomCollectionViewCell.h +++ b/Ifish/controllers/IfishYooseeFile/IfishYooseeControlller/IfishcameraBottomHView/CameraBottomCollectionViewCell.h @@ -12,5 +12,6 @@ @property (weak, nonatomic) IBOutlet UIImageView *kindImage; @property (weak, nonatomic) IBOutlet UILabel *kindName; @property (weak, nonatomic) IBOutlet UIImageView *hotImg; +@property (weak, nonatomic) IBOutlet UILabel *detailLabel; @end diff --git a/Ifish/controllers/IfishYooseeFile/IfishYooseeControlller/IfishcameraBottomHView/CameraBottomCollectionViewCell.xib b/Ifish/controllers/IfishYooseeFile/IfishYooseeControlller/IfishcameraBottomHView/CameraBottomCollectionViewCell.xib index 2c0cbbf..b5b169b 100644 --- a/Ifish/controllers/IfishYooseeFile/IfishYooseeControlller/IfishcameraBottomHView/CameraBottomCollectionViewCell.xib +++ b/Ifish/controllers/IfishYooseeFile/IfishYooseeControlller/IfishcameraBottomHView/CameraBottomCollectionViewCell.xib @@ -1,11 +1,9 @@ - - - - - + + + - + @@ -42,16 +40,31 @@ + + + + + + - + diff --git a/Ifish/controllers/IfishYooseeFile/IfishYooseeControlller/IfishcameraBottomHView/CameraBottomHView.m b/Ifish/controllers/IfishYooseeFile/IfishYooseeControlller/IfishcameraBottomHView/CameraBottomHView.m index f8fc251..e74d056 100644 --- a/Ifish/controllers/IfishYooseeFile/IfishYooseeControlller/IfishcameraBottomHView/CameraBottomHView.m +++ b/Ifish/controllers/IfishYooseeFile/IfishYooseeControlller/IfishcameraBottomHView/CameraBottomHView.m @@ -118,13 +118,17 @@ static NSString *bootomRecCellIdentifier = @"IfishRecVideoViewCell"; cell.kindImage.image = _dataImgArray[indexPath.row]; cell.kindName.text = _dataNameArray[indexPath.row]; + cell.detailLabel.text=@""; if (indexPath.row ==3) { cell.hotImg.image= LXImageWithImageName(@"devicename_iocn_label"); //cell.hotImg.hidden = NO; - }else if (indexPath.row ==2){ + }else if (indexPath.row ==8){ - //cell.hotImg.image= LXImageWithImageName(@"devicename_iocn_new"); + + + cell.detailLabel.text=@"(此功能仅限摇头机)"; + } return cell;