Steven 2 年之前
父节点
当前提交
eb116e11d5

二进制
KulexiuForStudent/KulexiuForStudent.xcworkspace/xcuserdata/wangzhi.xcuserdatad/UserInterfaceState.xcuserstate


+ 16 - 0
KulexiuForStudent/KulexiuForStudent.xcworkspace/xcuserdata/wangzhi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

@@ -484,5 +484,21 @@
             landmarkType = "7">
             landmarkType = "7">
          </BreakpointContent>
          </BreakpointContent>
       </BreakpointProxy>
       </BreakpointProxy>
+      <BreakpointProxy
+         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
+         <BreakpointContent
+            uuid = "C8D8D819-C69D-4F84-9739-680EB2EE9F1C"
+            shouldBeEnabled = "No"
+            ignoreCount = "0"
+            continueAfterRunningActions = "No"
+            filePath = "KulexiuForStudent/Module/Mine/MineCourse/View/VideoCourseCell.m"
+            startingColumnNumber = "9223372036854775807"
+            endingColumnNumber = "9223372036854775807"
+            startingLineNumber = "45"
+            endingLineNumber = "45"
+            landmarkName = "-configSourceModel:isInCheck:"
+            landmarkType = "7">
+         </BreakpointContent>
+      </BreakpointProxy>
    </Breakpoints>
    </Breakpoints>
 </Bucket>
 </Bucket>

+ 3 - 8
KulexiuForStudent/KulexiuForStudent/Module/Mine/MineCourse/View/VideoCourseCell.m

@@ -50,14 +50,9 @@
     }
     }
     
     
     
     
-    if (isCheck) {
-        self.descView.hidden = YES;
-        self.descLabel.text = @"";
-    }
-    else {
-        self.descView.hidden = NO;
-        self.descLabel.text = [NSString stringWithFormat:@"%.0f人已购买",model.countStudent];
-    }
+    
+    self.descView.hidden = NO;
+    self.descLabel.text = [NSString stringWithFormat:@"%.0f人已购买",model.countStudent];
     self.subjectLabel.text = [NSString returnNoNullStringWithString:model.lessonSubjectName];
     self.subjectLabel.text = [NSString returnNoNullStringWithString:model.lessonSubjectName];
 }
 }