Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 44c4d32

Browse filesBrowse files
committed
去掉tag数字
1 parent 0676aec commit 44c4d32
Copy full SHA for 44c4d32

File tree

Expand file treeCollapse file tree

1 file changed

+1
-5
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-5
lines changed
Open diff view settings
Collapse file

‎Coding_iOS/Views/ScreenView.m‎

Copy file name to clipboardExpand all lines: Coding_iOS/Views/ScreenView.m
+1-5Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
7575
} else {
7676
ScreenCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellIdentifier_ScreenCell forIndexPath:indexPath];
7777
cell.color = _labels[indexPath.row - _tastArray.count][@"color"];
78-
NSString *count = _labels[indexPath.row - _tastArray.count][@"count"];
79-
if (count == nil) {
80-
count = _labels[indexPath.row - _tastArray.count][@"all"];
81-
}
82-
cell.title = [NSString stringWithFormat:@"%@%@/%@", _labels[indexPath.row - _tastArray.count][@"name"], _labels[indexPath.row - _tastArray.count][@"processing"], count];
78+
cell.title = _labels[indexPath.row - _tastArray.count][@"name"];
8379
cell.isSel = indexPath.row == _selectNum;
8480

8581
return cell;

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.