Commit 21685f3709b1d424429cf0df9599dff4896c566a

Authored by yanglingyu
1 parent 8971f524

布局问题修复

CNLiveCMineModule.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveCMineModule'
11   - s.version = '0.2.8'
  11 + s.version = '0.2.9'
12 12 s.summary = '网家家C端个人中心'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveCMineModule/Classes/CNCMine/Present/CNMinePresent.m
... ... @@ -54,25 +54,25 @@
54 54 @"title":@"我的视频",
55 55 @"img":@"mine_video",
56 56 @"isBlack":@(NO),
57   - @"width":@((kScreenWidth -DS_adapt_length(20))/4)
  57 + @"width":@((kScreenWidth -DS_adapt_length(22))/4)
58 58 },
59 59 @{
60 60 @"title":@"我的收藏",
61 61 @"img":@"mine_collection",
62 62 @"isBlack":@(NO),
63   - @"width":@((kScreenWidth -DS_adapt_length(20))/4)
  63 + @"width":@((kScreenWidth -DS_adapt_length(22))/4)
64 64 },
65 65 @{
66 66 @"title":@"生活圈",
67 67 @"img":@"mine_life_circle",
68 68 @"isBlack":@(NO),
69   - @"width":@((kScreenWidth -DS_adapt_length(20))/4)
  69 + @"width":@((kScreenWidth -DS_adapt_length(22))/4)
70 70 },
71 71 @{
72 72 @"title":@"付费记录",
73 73 @"img":@"mine_pay_record",
74 74 @"isBlack":@(NO),
75   - @"width":@((kScreenWidth -DS_adapt_length(20))/4)
  75 + @"width":@((kScreenWidth -DS_adapt_length(22))/4)
76 76 },
77 77 ]
78 78 };
... ...